Ignore:
Timestamp:
05/23/08 16:11:25 (16 years ago)
Author:
ra33
Message:

Fixed bugs... added some more features!!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/AttributeUtils.java

    r72 r74  
    66import java.lang.reflect.InvocationTargetException;
    77import java.lang.reflect.Method;
     8import java.util.Collection;
    89import java.util.HashMap;
    910import java.util.LinkedList;
     
    6364                        _Ignore.add("link");
    6465                        _Ignore.add("l");
     66                        _Ignore.add("action");
     67                        _Ignore.add("a");
    6568                        _Ignore.add("position");
    6669                        _Ignore.add("pos");
     
    8689                        _GetMethods.add(Item.class.getMethod("getBackgroundColor", param));
    8790                        _GetMethods.add(Item.class.getMethod("getAction", param));
     91                        _GetMethods.add(Item.class.getMethod("getData", param));
    8892                        _GetMethods.add(Item.class.getMethod("getLink", param));
    8993                        _GetMethods.add(Item.class.getMethod("getFillColor", param));
     
    157161                                        pColor));
    158162
    159                         _SetMethods.put("action", Item.class.getMethod("setAction", pList));
    160                         _SetMethods.put("a", Item.class.getMethod("setAction", pList));
     163                        _SetMethods.put("action", Item.class.getMethod("setActions", pList));
     164                        _SetMethods.put("a", Item.class.getMethod("setActions", pList));
     165                        _SetMethods.put("d", Item.class.getMethod("setData", pList));
     166                        _SetMethods.put("data", Item.class.getMethod("setData", pList));
    161167
    162168                        _SetMethods.put("link", Item.class.getMethod("setLink", pString));
Note: See TracChangeset for help on using the changeset viewer.