Changeset 81 in josm for src/org/openstreetmap/josm/data
- Timestamp:
- 2006-04-05T00:31:57+02:00 (19 years ago)
- Location:
- src/org/openstreetmap/josm/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/data/SelectionTracker.java
r22 r81 91 91 listeners.remove(listener); 92 92 } 93 93 94 94 /** 95 95 * Remember to fire an selection changed event. A call to this will not fire -
src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r68 r81 3 3 import java.util.Collection; 4 4 import java.util.Collections; 5 import java.util.Date; 5 6 import java.util.HashMap; 6 7 import java.util.Map; … … 62 63 63 64 /** 65 * Time of last modification to this object. This is not set by JOSM but 66 * read from the server and delivered back to the server unmodified. It is 67 * used to check against edit conflicts. 68 */ 69 public Date lastModified = null; 70 71 /** 64 72 * Implementation of the visitor scheme. Subclases have to call the correct 65 73 * visitor function. … … 190 198 deleted = osm.deleted; 191 199 selected = osm.selected; 200 lastModified = osm.lastModified; 192 201 } 193 202 }
Note:
See TracChangeset
for help on using the changeset viewer.