Ignore:
Timestamp:
01/20/14 11:06:05 (10 years ago)
Author:
davidb
Message:

Introduction of anchorLeft and anchorTop to compliment existing anchorRight and anchorBottom

Location:
trunk/src/org/expeditee/io
Files:
2 edited

Legend:

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

    r676 r720  
    7777                        _ItemTags.put('K', Item.class.getMethod("setBorderColor",
    7878                                        pColor));
     79
     80                        _ItemTags.put('R', Item.class.getMethod("setAnchorLeft", pFloatO));
    7981                        _ItemTags.put('H', Item.class.getMethod("setAnchorRight", pFloatO));
     82                        _ItemTags.put('N', Item.class.getMethod("setAnchorTop", pFloatO));
    8083                        _ItemTags.put('I', Item.class.getMethod("setAnchorBottom", pFloatO));
     84
    8185                        _ItemTags.put('P', Item.class.getMethod("setPosition", pPoint));
    8286                        _ItemTags.put('F', Item.class.getMethod("setLink", pString));
  • trunk/src/org/expeditee/io/DefaultFrameWriter.java

    r707 r720  
    7171                        _ItemTags.put("G", Item.class.getMethod("getBackgroundColor", param));
    7272                        _ItemTags.put("K", Item.class.getMethod("getBorderColor", param));
     73
     74                        _ItemTags.put("R", Item.class.getMethod("getAnchorLeft", param));
    7375                        _ItemTags.put("H", Item.class.getMethod("getAnchorRight", param));
     76                        _ItemTags.put("N", Item.class.getMethod("getAnchorTop", param));
    7477                        _ItemTags.put("I", Item.class.getMethod("getAnchorBottom", param));
     78
    7579                        _ItemTags.put("P", Item.class.getMethod("getPosition", param));
    7680                        _ItemTags.put("T", Text.class.getMethod("getText", param));
Note: See TracChangeset for help on using the changeset viewer.