Package com.portal.app.cc
Interface PreferencesPage
- All Known Implementing Classes:
PPrefsGeneral
,PPrefsThreshold
,PThemeChooser
public interface PreferencesPage
The interface for all pages in the preferences dialog
- Version:
- %version: 1 % %date_modified: Mon Jun 04 10:21:11 2001 %
- Author:
- kapono
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Called to indicate the implementing UI should read the values out of the global data store and re-apply them to the UI.Returns the help ID for this preferences pagevoid
Called to indicate the implementing UI should save any modified properties out to the global data store.boolean
Called before storePrefs() to allow the page an opportunity to validate itself.
-
Method Details
-
displayDefaults
void displayDefaults()Called to indicate the implementing UI should read the values out of the global data store and re-apply them to the UI. -
storePrefs
void storePrefs()Called to indicate the implementing UI should save any modified properties out to the global data store. -
getHelpID
String getHelpID()Returns the help ID for this preferences page- Returns:
- the helpID for this page
-
validatePage
boolean validatePage()Called before storePrefs() to allow the page an opportunity to validate itself. Return false if any property is not set correctly.- Returns:
- true if the page is valid and the properties contained within can be saved; false otherwise
-