Changeset 9243 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2016-01-01T19:51:11+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/PurgeCommand.java
r9062 r9243 51 51 * - Each element of makeIncomplete must not be new and must have only 52 52 * referrers that are either a relation or included in toPurge. 53 * @param layer OSM data layer 54 * @param toPurge primitives to purge 55 * @param makeIncomplete primitives to make incomplete 53 56 */ 54 57 public PurgeCommand(OsmDataLayer layer, Collection<OsmPrimitive> toPurge, Collection<OsmPrimitive> makeIncomplete) { … … 142 145 * Sorts a collection of primitives such that for each object 143 146 * its referrers come later in the sorted collection. 147 * @param sel collection of primitives to sort 144 148 * @return sorted list 145 149 */ -
trunk/src/org/openstreetmap/josm/command/RotateCommand.java
r9067 r9243 35 35 * Creates a RotateCommand. 36 36 * Assign the initial object set, compute pivot point and inital rotation angle. 37 * @param objects objects to fetch nodes from 38 * @param currentEN cuurent eats/north 37 39 */ 38 40 public RotateCommand(Collection<OsmPrimitive> objects, EastNorth currentEN) { … … 48 50 /** 49 51 * Get angle between the horizontal axis and the line formed by the pivot and given point. 52 * @param currentEN cuurent eats/north 50 53 * @return angle between the horizontal axis and the line formed by the pivot and given point 51 54 **/ -
trunk/src/org/openstreetmap/josm/command/ScaleCommand.java
r9067 r9243 31 31 * Computation of pivot point is done by the same rules that are used in 32 32 * the "align nodes in circle" action. 33 * @param objects objects to fetch nodes from 34 * @param currentEN cuurent eats/north 33 35 */ 34 36 public ScaleCommand(Collection<OsmPrimitive> objects, EastNorth currentEN) { -
trunk/src/org/openstreetmap/josm/command/TransformNodesCommand.java
r8931 r9243 46 46 * Creates a TransformNodesObject. 47 47 * Find out the impacted nodes and store their initial state. 48 * @param objects objects to fetch nodes from 48 49 */ 49 50 public TransformNodesCommand(Collection<OsmPrimitive> objects) {
Note:
See TracChangeset
for help on using the changeset viewer.