Ignore:
Timestamp:
05/31/19 10:10:29 (5 years ago)
Author:
bln4
Message:

Items can now have an encryption label. New functionality using this property incoming.

File:
1 edited

Legend:

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

    r1388 r1398  
    303303       
    304304        private Item _magnetizedItemBottom = null;
     305       
     306        private String _encryptionLabel = null;
    305307
    306308        protected DotType _type = DotType.square;
     
    34493451                setMagnetizedItemBottom(this.getParent().getItemWithID(id));
    34503452        }
     3453       
     3454        public String getEncryptionLabel() {
     3455                return _encryptionLabel;
     3456        }
     3457       
     3458        public void setEncryptionLabel(String label) {
     3459                this._encryptionLabel = label;
     3460        }
    34513461
    34523462        /**
Note: See TracChangeset for help on using the changeset viewer.