Changeset 8840 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2015-10-09T02:12:45+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/AddPrimitivesCommand.java
r8512 r8840 29 29 30 30 // only filled on undo 31 private List<OsmPrimitive> createdPrimitives = null;32 private Collection<OsmPrimitive> createdPrimitivesToSelect = null;31 private List<OsmPrimitive> createdPrimitives; 32 private Collection<OsmPrimitive> createdPrimitivesToSelect; 33 33 34 34 /** -
trunk/src/org/openstreetmap/josm/command/RotateCommand.java
r8456 r8840 25 25 * angle of rotation starting click to pivot 26 26 */ 27 private double startAngle = 0.0;27 private double startAngle; 28 28 29 29 /** 30 30 * computed rotation angle between starting click and current mouse pos 31 31 */ 32 private double rotationAngle = 0.0;32 private double rotationAngle; 33 33 34 34 /** -
trunk/src/org/openstreetmap/josm/command/ScaleCommand.java
r8456 r8840 24 24 * World position of the mouse when the user started the command. 25 25 */ 26 private EastNorth startEN = null;26 private EastNorth startEN; 27 27 28 28 /** -
trunk/src/org/openstreetmap/josm/command/SequenceCommand.java
r8510 r8840 27 27 private final String name; 28 28 /** Determines if the sequence execution should continue after one of its commands fails. */ 29 public boolean continueOnError = false;29 public boolean continueOnError; 30 30 31 31 /**
Note:
See TracChangeset
for help on using the changeset viewer.