Ignore:
Timestamp:
07/25/19 11:44:16 (5 years ago)
Author:
bln4
Message:

Injecting an encryption label into an XRayable Item now injects that encryption label into the source item as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/XRayable.java

    r1415 r1420  
    3939        }
    4040       
     41        @Override
     42        public void setEncryptionLabel(String label) {
     43                // When the encryption label is set on a XRayable is sets it on its source as well.
     44                super.setEncryptionLabel(label);
     45                _source.setEncryptionLabel(label);
     46        }
     47       
    4148        public Collection<Item> getItemsToSave() {
    4249                Collection<Item> toSave = new LinkedList<Item>();
Note: See TracChangeset for help on using the changeset viewer.