Changeset 6329 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2013-10-27T02:53:37+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/ChangePropertyKeyCommand.java
r6009 r6329 17 17 18 18 /** 19 * Command that replaces the key of several objects 19 * Command that replaces the key of one or several objects 20 20 * 21 21 */ … … 35 35 36 36 /** 37 * Constructor 37 * Constructs a new {@code ChangePropertyKeyCommand}. 38 * 39 * @param object the object subject to change replacement 40 * @param key The key to replace 41 * @param newKey the new value of the key 42 * @since 6329 43 */ 44 public ChangePropertyKeyCommand(OsmPrimitive object, String key, String newKey) { 45 this(Collections.singleton(object), key, newKey); 46 } 47 48 /** 49 * Constructs a new {@code ChangePropertyKeyCommand}. 38 50 * 39 51 * @param objects all objects subject to change replacement
Note:
See TracChangeset
for help on using the changeset viewer.