Changeset 8931 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2015-10-23T01:17:45+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/Command.java
r8510 r8931 220 220 /** 221 221 * Replies the layer this command is (or was) applied to. 222 * 222 * @return the layer this command is (or was) applied to 223 223 */ 224 224 protected OsmDataLayer getLayer() { … … 241 241 * Return the primitives that take part in this command. 242 242 */ 243 @Override public Collection<? extends OsmPrimitive> getParticipatingPrimitives() { 243 @Override 244 public Collection<? extends OsmPrimitive> getParticipatingPrimitives() { 244 245 return cloneMap.keySet(); 245 246 } -
trunk/src/org/openstreetmap/josm/command/PurgeCommand.java
r8510 r8931 142 142 * Sorts a collection of primitives such that for each object 143 143 * its referrers come later in the sorted collection. 144 * @return sorted list 144 145 */ 145 146 public static List<OsmPrimitive> topoSort(Collection<OsmPrimitive> sel) { -
trunk/src/org/openstreetmap/josm/command/RotateCommand.java
r8840 r8931 47 47 48 48 /** 49 * Get angle between the horizontal axis and the line formed by the pivot and give points. 49 * Get angle between the horizontal axis and the line formed by the pivot and given point. 50 * @return angle between the horizontal axis and the line formed by the pivot and given point 50 51 **/ 51 52 protected final double getAngle(EastNorth currentEN) { -
trunk/src/org/openstreetmap/josm/command/TransformNodesCommand.java
r8510 r8931 119 119 /** 120 120 * Get the nodes with the current transformation applied. 121 * @return nodes with the current transformation applied 121 122 */ 122 123 public Collection<Node> getTransformedNodes() { … … 127 128 * Get the center of the nodes under modification. 128 129 * It's just the barycenter. 130 * @return center east/north of the nodes under modification 129 131 * @see org.openstreetmap.josm.tools.Geometry#getCentroid(java.util.List) 130 132 */
Note: See TracChangeset
for help on using the changeset viewer.