Ignore:
Timestamp:
08/27/08 15:10:31 (16 years ago)
Author:
ra33
Message:

Added additional mail functionality...
Also added REMINDER feature

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/Item.java

    r282 r284  
    11001100                                if (returnValue instanceof Item) {
    11011101                                        Misc.attachToCursor(((Item) returnValue).getAllConnected());
     1102                                } else if (returnValue instanceof Collection) {
     1103                                        try {
     1104                                                Misc.attachToCursor((Collection) returnValue);
     1105                                        } catch (Exception e) {
     1106                                                e.printStackTrace();
     1107                                        }
    11021108                                } else {
    11031109                                        Misc.attachStatsToCursor(returnValue.toString());
     
    15461552                                for (Item i : getAllConnected()) {
    15471553                                        if (i instanceof Line) {
    1548                                                 ((Line)i).invalidateCommonTrait(trait);
     1554                                                ((Line) i).invalidateCommonTrait(trait);
    15491555                                        }
    15501556                                }
     
    16701676                        line.updatePolygon();
    16711677                }
    1672                
    1673 //              for (Item item : getAllConnected()) {
    1674 //                      item.updatePolygon();
    1675 //              }
     1678
     1679                // for (Item item : getAllConnected()) {
     1680                // item.updatePolygon();
     1681                // }
    16761682
    16771683                invalidateCommonTraitForAll(ItemAppearence.PostMoved);
Note: See TracChangeset for help on using the changeset viewer.