Changeset 1857 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2009-07-26T22:52:23+02:00 (14 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/AddCommand.java
r1814 r1857 13 13 import org.openstreetmap.josm.data.osm.OsmPrimitiveType; 14 14 import org.openstreetmap.josm.gui.PrimitiveNameFormatter; 15 import org.openstreetmap.josm.gui.layer.OsmDataLayer; 15 16 import org.openstreetmap.josm.tools.ImageProvider; 16 17 … … 35 36 public AddCommand(OsmPrimitive osm) { 36 37 super(); 38 this.osm = osm; 39 } 40 41 /** 42 * Create the command and specify the element to add. 43 */ 44 public AddCommand(OsmDataLayer layer, OsmPrimitive osm) { 45 super(layer); 37 46 this.osm = osm; 38 47 }
Note: See TracChangeset
for help on using the changeset viewer.