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

Last change on this file since 6380 was 6380, checked in by Don-vip, 10 years ago

update license/copyright information

File size: 621 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 */
15 public TabPreferenceSetting getTabPreferenceSetting(final PreferenceTabbedPane gui);
16}
Note: See TracBrowser for help on using the repository browser.