Ignore:
Timestamp:
2017-04-16T14:42:27+02:00 (9 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/PrimitivesRemovedEvent.java

    r7005 r11928  
    1515    private final boolean wasComplete;
    1616
     17    /**
     18     * Constructs a new {@code PrimitivesRemovedEvent}.
     19     * @param dataSet the dataset from which the event comes from
     20     * @param primitives the list of primitives affected by the change
     21     * @param wasComplete {@code true} if primitive wasn't really removed from the dataset, it only become incomplete again
     22     */
    1723    public PrimitivesRemovedEvent(DataSet dataSet, Collection<? extends OsmPrimitive> primitives, boolean wasComplete) {
    1824        super(dataSet);
     
    3238
    3339    /**
    34      *
    35      * @return True if primitive wasn't really removed from the dataset, it only become incomplete again
     40     * Determines if primitive wasn't really removed from the dataset, it only become incomplete again.
     41     * @return {@code true} if primitive wasn't really removed from the dataset, it only become incomplete again
    3642     */
    3743    public boolean wasComplete() {
Note: See TracChangeset for help on using the changeset viewer.