Ignore:
Timestamp:
2017-04-16T14:42:27+02:00 (7 years ago)
Author:
Don-vip
Message:

improve unit tests, javadoc

File:
1 edited

Legend:

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

    r5170 r11928  
    1313    private final Way way;
    1414
     15    /**
     16     * Constructs a new {@code WayNodesChangedEvent}.
     17     * @param dataSet the dataset from which the event comes from
     18     * @param way the way affected by the change
     19     */
    1520    public WayNodesChangedEvent(DataSet dataSet, Way way) {
    1621        super(dataSet);
     
    2328    }
    2429
     30    /**
     31     * Returns the way affected by the change.
     32     * @return the way affected by the change
     33     */
    2534    public Way getChangedWay() {
    2635        return way;
Note: See TracChangeset for help on using the changeset viewer.