Ignore:
Timestamp:
06/21/19 12:12:55 (5 years ago)
Author:
bln4
Message:

Implementation of the surrogate system.
When you set an item to have a encryption label, a surrogate for that item is generated.
The newly updated EncryptedExpReader/Writer has been updated to maintain the connection between the item and its surrogate.

Coming up next:
Surrogate mode. The ability to simulate viewing and editing an encrypted frame with a limited set of labels.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/io/DefaultFrameWriter.java

    r1405 r1408  
    5555
    5656        // keep track of methods that are put on the same line
    57         protected static LinkedHashMap<Character, Method> _ItemTags = null;
     57        private static LinkedHashMap<Character, Method> _ItemTags = null;
    5858        // IMPORTANT: keys in _ItemTagsExt must start with underscore as their first character
    59         protected static LinkedHashMap<String, Method> _ItemTagsExt = null;
     59        private static LinkedHashMap<String, Method> _ItemTagsExt = null;
    6060
    6161        protected static LinkedHashMap<Character, Method> _FrameTags = null;
     
    319319        }
    320320
     321        /**
     322         * @return the _ItemTags
     323         */
     324        public static LinkedHashMap<Character, Method> getItemTags() {
     325                return _ItemTags;
     326        }
     327
     328        /**
     329         * @return the _ItemTagsExt
     330         */
     331        public static LinkedHashMap<String, Method> getItemTagsExt() {
     332                return _ItemTagsExt;
     333        }
     334
    321335}
Note: See TracChangeset for help on using the changeset viewer.