Changeset 81 in josm for src/org/openstreetmap/josm/data


Ignore:
Timestamp:
2006-04-05T00:31:57+02:00 (19 years ago)
Author:
imi
Message:
  • fixed Exception when downloading empty data and auto-open dialogs
  • fixed Exception when download finished before "Please Wait" appeared
  • added new selection modificator options to search dialog
  • added upload of timestamp
Location:
src/org/openstreetmap/josm/data
Files:
2 edited

Legend:

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

    r22 r81  
    9191                        listeners.remove(listener);
    9292        }
    93        
     93
    9494        /**
    9595         * Remember to fire an selection changed event. A call to this will not fire
  • src/org/openstreetmap/josm/data/osm/OsmPrimitive.java

    r68 r81  
    33import java.util.Collection;
    44import java.util.Collections;
     5import java.util.Date;
    56import java.util.HashMap;
    67import java.util.Map;
     
    6263
    6364        /**
     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        /**
    6472         * Implementation of the visitor scheme. Subclases have to call the correct
    6573         * visitor function.
     
    190198                deleted = osm.deleted;
    191199                selected = osm.selected;
     200                lastModified = osm.lastModified;
    192201        }
    193202}
Note: See TracChangeset for help on using the changeset viewer.