Ignore:
Timestamp:
2018-06-17T21:38:38+02:00 (7 years ago)
Author:
donvip
Message:

fix javadoc warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java

    r34312 r34313  
    4848    private Node selectedNode = null;
    4949
    50     /** Plugin constructor called at JOSM startup */
     50    /**
     51     * Plugin constructor called at JOSM startup
     52     * @param info plugin info
     53     */
    5154    public WayDownloaderPlugin(PluginInformation info) {
    5255        super(info);
     
    247250    }
    248251
    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     */
    250258    private Node findOtherEnd(Way way, Node firstEnd) {
    251259        Node otherEnd = way.firstNode();
     
    277285     * given a selected way, select a node on the end of the way which is not in a downloaded area
    278286     * return true if this worked
     287     * @param selection selected way
     288     * @return true if a node has been selected
    279289     */
    280290    private boolean workFromWaySelection(Collection<? extends OsmPrimitive> selection) {
Note: See TracChangeset for help on using the changeset viewer.