Ignore:
Timestamp:
2005-10-27T00:38:03+02:00 (20 years ago)
Author:
imi
Message:
  • added commands to support undo later
  • added Edit-Layer concept
  • painting of deleted objects
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/command/Command.java

    r22 r23  
    2727        /**
    2828         * Fill in the changed data this command operates on (for sending to the server).
    29          * Add to the lists, don't clear them.
    30          * @param modified  The modified primitives
    31          * @param deleted   The deleted primitives
    32          * @param added         The added primitives
     29         * Add to the lists, don't clear them. The lists can be <code>null</code>
     30         * in which case they are ignored.
     31         *
     32         * @param modified  The modified primitives or <code>null</code>
     33         * @param deleted   The deleted primitives or <code>null</code>
     34         * @param added         The added primitives or <code>null</code>
    3335         */
    3436        void fillModifiedData(Collection<OsmPrimitive> modified,
Note: See TracChangeset for help on using the changeset viewer.