Changeset 1226 for trunk/src


Ignore:
Timestamp:
01/31/19 16:28:09 (5 years ago)
Author:
bln4
Message:
 
Location:
trunk/src/org/expeditee/io
Files:
2 edited

Legend:

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

    r1200 r1226  
    7979                        _FrameTags.put('A', Frame.class.getMethod("setName", pString));
    8080                        _FrameTags.put('V', Frame.class.getMethod("setVersion", pInt));
    81                         _FrameTags
    82                                         .put('p', Frame.class.getMethod("setPermission", pPermission));
     81                        _FrameTags.put('p', Frame.class.getMethod("setPermission", pPermission));
    8382                        _FrameTags.put('U', Frame.class.getMethod("setOwner", pString));
    84                         _FrameTags.put('D', Frame.class
    85                                         .getMethod("setDateCreated", pString));
    86                         _FrameTags.put('M', Frame.class.getMethod("setLastModifyUser",
    87                                         pString));
    88                         _FrameTags.put('d', Frame.class.getMethod("setLastModifyDate",
    89                                         pString));
    90                         _FrameTags
    91                                         .put('F', Frame.class.getMethod("setFrozenDate", pString));
    92 
    93                         _FrameTags.put('O', Frame.class.getMethod("setForegroundColor",
    94                                         pColor));
    95                         _FrameTags.put('B', Frame.class.getMethod("setBackgroundColor",
    96                                         pColor));
     83                        _FrameTags.put('D', Frame.class.getMethod("setDateCreated", pString));
     84                        _FrameTags.put('M', Frame.class.getMethod("setLastModifyUser", pString));
     85                        _FrameTags.put('d', Frame.class.getMethod("setLastModifyDate", pString));
     86                        _FrameTags.put('F', Frame.class.getMethod("setFrozenDate", pString));
     87                        _FrameTags.put('O', Frame.class.getMethod("setForegroundColor", pColor));
     88                        _FrameTags.put('B', Frame.class.getMethod("setBackgroundColor", pColor));
     89                        _FrameTags.put('K', Frame.class.getMethod("setEncryptionLabel", pString));
    9790
    9891                        // Note: As of 26/11/18 there are no unused letter item tags.  Use other characters.
  • trunk/src/org/expeditee/io/DefaultFrameWriter.java

    r1200 r1226  
    7575                        _FrameTags.put('d', Frame.class.getMethod("getLastModifyDate"));
    7676                        _FrameTags.put('F', Frame.class.getMethod("getFrozenDate"));
    77 
    7877                        _FrameTags.put('O', Frame.class.getMethod("getForegroundColor"));
    7978                        _FrameTags.put('B', Frame.class.getMethod("getBackgroundColor"));
     79                        _FrameTags.put('K', Frame.class.getMethod("getEncryptionLabel"));
    8080                       
    8181                        // Note: As of 26/11/18 there are no unused letter item tags.  Use other characters.
Note: See TracChangeset for help on using the changeset viewer.