Ignore:
Timestamp:
2017-06-11T13:39:33+02:00 (7 years ago)
Author:
michael2402
Message:

See #14794: Document data.validation package and subpackages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/TestError.java

    r11336 r12390  
    299299    }
    300300
     301    /**
     302     * Gets the ignores subgroup that is more specialized than {@link #getIgnoreGroup()}
     303     * @return The ignore sub group
     304     */
    301305    public String getIgnoreSubGroup() {
    302306        String ignorestring = getIgnoreGroup();
     
    307311    }
    308312
     313    /**
     314     * Gets the ignore group ID that is used to allow the user to ignore all same errors
     315     * @return The group id
     316     * @see TestError#getIgnoreSubGroup()
     317     */
    309318    public String getIgnoreGroup() {
    310319        return Integer.toString(code);
    311320    }
    312321
     322    /**
     323     * Flags this error as ignored
     324     * @param state The ignore flag
     325     */
    313326    public void setIgnored(boolean state) {
    314327        ignored = state;
    315328    }
    316329
     330    /**
     331     * Checks if this error is ignored
     332     * @return <code>true</code> if it is ignored
     333     */
    317334    public boolean isIgnored() {
    318335        return ignored;
     
    371388    }
    372389
     390    /**
     391     * Visits all highlighted validation elements
     392     * @param v The visitor that should receive a visit-notification on all highlighted elements
     393     */
    373394    @SuppressWarnings("unchecked")
    374395    public void visitHighlighted(ValidatorVisitor v) {
Note: See TracChangeset for help on using the changeset viewer.