source: trunk/src/org/expeditee/encryption/items/KeyType.java@ 1477

Last change on this file since 1477 was 1477, checked in by bnemhaus, 4 years ago

Added label existance check for when setting encryption label on a frame.

Added padlock icon on items that are encrypted.

Added key icon on items with KeyImage property set to 'PartialKey' or 'FullKey'. This will hopefully soon transformed into automatically setting these properties on key items that are on the secrets frame. The property should not be set-able by user once fully implemented and is only atm for debug purposes.

File size: 105 bytes
Line 
1package org.expeditee.encryption.items;
2
3public enum KeyType {
4 NotAKey,
5 PartialKey,
6 FullKey;
7}
Note: See TracBrowser for help on using the repository browser.