Changeset 6324 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2013-10-25T18:39:02+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/ChangePropertyCommand.java
r5143 r6324 36 36 /** 37 37 * Key and value pairs. If value is <code>null</code>, delete all key references with the given 38 * key. Otherwise, change the properties of all objects to the given value or create keys of38 * key. Otherwise, change the tags of all objects to the given value or create keys of 39 39 * those objects that do not have the key yet. 40 40 */ … … 42 42 43 43 /** 44 * Creates a command to change multiple properties of multiple objects44 * Creates a command to change multiple tags of multiple objects 45 45 * 46 46 * @param objects the objects to modify 47 * @param tags the properties to set47 * @param tags the tags to set 48 48 */ 49 49 public ChangePropertyCommand(Collection<? extends OsmPrimitive> objects, AbstractMap<String, String> tags) { … … 55 55 56 56 /** 57 * Creates a command to change one propertyof multiple objects57 * Creates a command to change one tag of multiple objects 58 58 * 59 59 * @param objects the objects to modify 60 * @param key the key of the propertyto set60 * @param key the key of the tag to set 61 61 * @param value the value of the key to set 62 62 */ … … 69 69 70 70 /** 71 * Creates a command to change on propertyof one object71 * Creates a command to change one tag of one object 72 72 * 73 73 * @param object the object to modify 74 * @param key the key of the propertyto set74 * @param key the key of the tag to set 75 75 * @param value the value of the key to set 76 76 */ … … 180 180 181 181 if (allnull) { 182 text = tr("Deleted {0} properties for {1} objects", tags.size(), objects.size());182 text = tr("Deleted {0} tags for {1} objects", tags.size(), objects.size()); 183 183 } else 184 text = tr("Set {0} properties for {1} objects", tags.size(), objects.size());184 text = tr("Set {0} tags for {1} objects", tags.size(), objects.size()); 185 185 } 186 186 return text;
Note: See TracChangeset
for help on using the changeset viewer.