Changeset 34313 in osm for applications/editors/josm/plugins/waydownloader/src/org
- Timestamp:
- 2018-06-17T21:38:38+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java ¶
r34312 r34313 48 48 private Node selectedNode = null; 49 49 50 /** Plugin constructor called at JOSM startup */ 50 /** 51 * Plugin constructor called at JOSM startup 52 * @param info plugin info 53 */ 51 54 public WayDownloaderPlugin(PluginInformation info) { 52 55 super(info); … … 247 250 } 248 251 249 /** Given the node on one end of the way, return the node on the other end */ 252 /** 253 * Given the node on one end of the way, return the node on the other end 254 * @param way way 255 * @param firstEnd one end 256 * @return other end 257 */ 250 258 private Node findOtherEnd(Way way, Node firstEnd) { 251 259 Node otherEnd = way.firstNode(); … … 277 285 * given a selected way, select a node on the end of the way which is not in a downloaded area 278 286 * return true if this worked 287 * @param selection selected way 288 * @return true if a node has been selected 279 289 */ 280 290 private boolean workFromWaySelection(Collection<? extends OsmPrimitive> selection) {
Note:
See TracChangeset
for help on using the changeset viewer.