Ignore:
Timestamp:
2013-04-29T00:09:53+02:00 (11 years ago)
Author:
stoecker
Message:

fix all remaining javadoc warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/WaySegment.java

    r5783 r5909  
    2222    }
    2323
    24     public Node getFirstNode(){
     24    /**
     25     * Returns the first node of the way segment.
     26     * @return the first node
     27     */
     28    public Node getFirstNode() {
    2529        return way.getNode(lowerIndex);
    2630    }
    2731
     32    /**
     33     * Returns the second (last) node of the way segment.
     34     * @return the second node
     35     */
    2836    public Node getSecondNode(){
    2937        return way.getNode(lowerIndex + 1);
     
    3139
    3240    /**
    33      * returns this way segment as complete way.
    34      * @return
     41     * Returns this way segment as complete way.
     42     * @return the way segment as {@code Way}
    3543     */
    3644    public Way toWay() {
Note: See TracChangeset for help on using the changeset viewer.