source: josm/trunk/src/org/openstreetmap/josm/actions/AdaptableAction.java@ 12894

Last change on this file since 12894 was 12546, checked in by bastiK, 7 years ago

see #14794 - javadoc

  • Property svn:eol-style set to native
File size: 688 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import javax.swing.Action;
5
6/**
7 * Interface to indicate that name (tooltip) and icon may be changed for an entry
8 * in the toolbar.
9 * <p>
10 * The name and icon of an {@link org.openstreetmap.josm.gui.preferences.ToolbarPreferences.ActionDefinition}
11 * is saved to the preferences when the wrapped action implements AdaptableAction.
12 * <p>
13 * The user will have options to change the name and icon in the
14 * {@link org.openstreetmap.josm.gui.preferences.ToolbarPreferences} when the action
15 * for the toolbar entry implements AdaptableAction.
16 */
17public interface AdaptableAction extends Action {
18}
Note: See TracBrowser for help on using the repository browser.