Ignore:
Timestamp:
2018-07-15T12:39:47+02:00 (6 years ago)
Author:
michael2402
Message:

See #16388: Fix Checkstyle / Test issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/actions/IRelationEditorUpdateOn.java

    r14029 r14030  
     1// License: GPL. For details, see LICENSE file.
    12package org.openstreetmap.josm.gui.dialogs.relation.actions;
    23
     
    67 * <p>
    78 * It holds common constants that are often used.
    8  * 
     9 *
    910 * @author Michael Zangl
    1011 * @since 14027
     
    2324            .addListSelectionListener(action);
    2425
     26    /**
     27     * Update when a tag of the relation changed
     28     */
    2529    IRelationEditorUpdateOn TAG_CHANGE = (editor, action) -> editor.getTagModel().addPropertyChangeListener(action);
     30
     31    /**
     32     * Update when a relation changed
     33     */
    2634    IRelationEditorUpdateOn SELECTION_TABLE_CHANGE = (editor, action) -> editor.getSelectionTableModel()
    2735            .addTableModelListener(action);
    2836
     37    /**
     38     * Registers the given action as listener on the relation editor.
     39     * @param editor The relation editor to register the listeners on
     40     * @param action The action that should be registered
     41     */
    2942    void register(IRelationEditorActionAccess editor, AbstractRelationEditorAction action);
    3043}
Note: See TracChangeset for help on using the changeset viewer.