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

Last change on this file since 17318 was 11023, checked in by Don-vip, 8 years ago

checkstyle

  • Property svn:eol-style set to native
File size: 675 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 */
10public interface SubPreferenceSetting extends PreferenceSetting {
11
12 /**
13 * Returns the preference setting (displayed in the specified preferences tab pane) that contains this preference setting.
14 * @param gui preferences tabbed pane
15 * @return parent preference setting
16 */
17 TabPreferenceSetting getTabPreferenceSetting(PreferenceTabbedPane gui);
18}
Note: See TracBrowser for help on using the repository browser.