source: josm/trunk/src/org/openstreetmap/josm/gui/preferences/PreferenceSetting.java@ 1169

Last change on this file since 1169 was 1169, checked in by stoecker, 15 years ago

removed usage of tab stops

  • Property svn:eol-style set to native
File size: 432 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.gui.preferences;
3
4
5public interface PreferenceSetting {
6 /**
7 * Add the GUI elements to the dialog. The elements should be initialized after
8 * the current preferences.
9 */
10 void addGui(PreferenceDialog gui);
11
12 /**
13 * Called when OK is pressed to save the setting in the preferences file.
14 */
15 void ok();
16}
Note: See TracBrowser for help on using the repository browser.