Ignore:
Timestamp:
2005-12-19T22:58:10+01:00 (19 years ago)
Author:
imi
Message:
  • Fixed bugs in reading/writing
  • Added correct extension filter to load/save
  • Delete now moves to deleted. modified flag reintroduced
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/data/osm/OsmPrimitive.java

    r31 r32  
    3232        public long id = 0;
    3333
     34        /**
     35         * <code>true</code>, if the object has been modified since it was loaded from
     36         * the server. In this case, on next upload, this object will be updated. Deleted
     37         * objects are deleted from the server, even if they are modified. If the objects
     38         * are added (id=0), the modified is ignored and the object is added to the server.
     39         */
     40        public boolean modified = false;
     41       
    3442        /**
    3543         * If set to true, this object is currently selected.
Note: See TracChangeset for help on using the changeset viewer.