- Timestamp:
- 2017-11-14T21:20:31+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/MapRectifierWMSmenuAction.java
r12716 r13123 53 53 54 54 /** 55 * Constructs a new {@code RectifierService}. 55 56 * @param name Name of the rectifing service 56 57 * @param url URL to the service where users can register, upload, etc. -
trunk/src/org/openstreetmap/josm/actions/OrthogonalizeAction.java
r13107 r13123 438 438 */ 439 439 private static class WayData { 440 public final List<Node> wayNodes; // The assigned way 441 public final int nSeg; // Number of Segments of the Way 442 public final int nNode; // Number of Nodes of the Way 443 public final Direction[] segDirections; // Direction of the segments 440 /** The assigned way */ 441 public final List<Node> wayNodes; 442 /** Number of Segments of the Way */ 443 public final int nSeg; 444 /** Number of Nodes of the Way */ 445 public final int nNode; 446 /** Direction of the segments */ 447 public final Direction[] segDirections; 444 448 // segment i goes from node i to node (i+1) 445 public EastNorth segSum; // (Vector-)sum of all horizontal segments plus the sum of all vertical 449 /** (Vector-)sum of all horizontal segments plus the sum of all vertical */ 450 public EastNorth segSum; 446 451 // segments turned by 90 degrees 447 public double heading; // heading of segSum == approximate heading of the way 452 /** heading of segSum == approximate heading of the way */ 453 public double heading; 448 454 449 455 WayData(List<Node> wayNodes) { -
trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java
r12846 r13123 142 142 143 143 /** 144 * Reverses a given way. 144 145 * @param w the way 145 146 * @return the reverse command and the tag correction commands -
trunk/src/org/openstreetmap/josm/actions/SplitWayAction.java
r12901 r13123 64 64 65 65 /** 66 * Constructs a new {@code SplitWayResult}. 66 67 * @param command The command to be performed to split the way (which is saved for later retrieval with {@link #getCommand}) 67 68 * @param newSelection The new list of selected primitives ids (which is saved for later retrieval with {@link #getNewSelection}) -
trunk/src/org/openstreetmap/josm/actions/UploadAction.java
r13028 r13123 139 139 } 140 140 141 /**142 * Refreshes the enabled state143 *144 */145 141 @Override 146 142 protected void updateEnabledState() { … … 149 145 } 150 146 147 /** 148 * Check whether the preconditions are met to upload data from a given layer, if applicable. 149 * @param layer layer to check 150 * @return {@code true} if the preconditions are met, or not applicable 151 * @see #checkPreUploadConditions(AbstractModifiableLayer, APIDataSet) 152 */ 151 153 public static boolean checkPreUploadConditions(AbstractModifiableLayer layer) { 152 154 return checkPreUploadConditions(layer,
Note:
See TracChangeset
for help on using the changeset viewer.