source: josm/trunk/src/org/openstreetmap/josm/gui/preferences/SubPreferenceSetting.java

Last change on this file was 19536, checked in by stoecker, 6 weeks ago

remove PMD ImplicitFunctionalInterface, see #24635

  • Property svn:eol-style set to native
File size: 728 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.preferences;
3
4/**
5 * Preference settings, that do *not* display a top level tab.
6 *
7 * This preference setting's addGui method is called after the user clicked the parent tab
8 * (returned by getTabPreferenceSetting).
9 */
10@SuppressWarnings("PMD.ImplicitFunctionalInterface")
11public interface SubPreferenceSetting extends PreferenceSetting {
12
13 /**
14 * Returns the preference setting (displayed in the specified preferences tab pane) that contains this preference setting.
15 * @param gui preferences tabbed pane
16 * @return parent preference setting
17 */
18 TabPreferenceSetting getTabPreferenceSetting(PreferenceTabbedPane gui);
19}
Note: See TracBrowser for help on using the repository browser.