org.eclipse.jface.preference |
Package-level Javadoc
Provides a framework for preferences.
Package Specification
A preference manager (class PreferenceManager) maintains
a tree of preference nodes. Preferences are presented to the end
user in a preference dialog consisting of preference pages.
A preference page consists of multiple preference fields, which can be
displayed and modified though field editors. The framework contains
an abstract base class for preference dialogs (PreferenceDialog),
and an abstract preference page class (FieldEditorPreferencePage)
for hosting these field editors.
The individual preference values are maintained in a preference store
(IPreferenceStore). Each preference has a current value and a
default value use to (re-)initialize it. The framework provides a concrete
preference store implementation (PreferenceStore) based on an
internal java.util.Properties object, with support for persisting
the non-default preference values to files or streams.
A field editor presents the value of a single preference to the end
user. The value is loaded from the preference store; if modified by the
end user, the value is validated and eventually stored back to the preference
store.
This package contains ready-to-use field editors for various types of
preferences:
-
BooleanFieldEditor - booleans
-
IntegerFieldEditor - integers
-
StringFieldEditor - text strings
-
RadioGroupFieldEditor - enumerations
-
ColorFieldEditor - RGB colors
-
FontFieldEditor - fonts
-
DirectoryFieldEditor - directories
-
FileFieldEditor - files
-
PathEditor - paths
All field editors are subclasses of the abstract base class FieldEditor;
the framework allows new kinds of field editors to be defined by subclassing
this class or one of its subclasses.
Note: None of the classes in this package maintain global state.
|
Java Source File Name | Type | Comment |
BooleanFieldEditor.java | Class | A field editor for a boolean type preference. |
BooleanPropertyAction.java | Class | The BooleanPropertyAction is an action that set the values of a
boolean property in the preference store. |
ColorFieldEditor.java | Class | A field editor for a color type preference. |
ColorSelector.java | Class | The ColorSelector is a wrapper for a button that displays a
selected Color and allows the user to change the selection. |
ComboFieldEditor.java | Class | A field editor for a combo box that allows the drop-down selection of one of
a list of items. |
DirectoryFieldEditor.java | Class | A field editor for a directory path type preference. |
FieldEditor.java | Class | Abstract base class for all field editors.
A field editor presents the value of a preference to the end
user. |
FieldEditorPreferencePage.java | Class | A special abstract preference page to host field editors. |
FileFieldEditor.java | Class | A field editor for a file path type preference. |
FontFieldEditor.java | Class | A field editor for a font type preference. |
IntegerFieldEditor.java | Class | A field editor for an integer type preference. |
IPersistentPreferenceStore.java | Interface | IPersistentPreferenceStore is a preference store that can
be saved. |
IPreferenceNode.java | Interface | Interface to a node in a preference dialog. |
IPreferencePage.java | Interface | An interface for a preference page. |
IPreferencePageContainer.java | Interface | An interface used by a preference page to talk to
its dialog. |
IPreferenceStore.java | Interface | The IPreferenceStore interface represents a table mapping
named preferences to values. |
JFacePreferences.java | Class | JFacePreferences is a class used to administer the preferences
used by JFace objects. |
ListEditor.java | Class | An abstract field editor that manages a list of input values. |
PathEditor.java | Class | A field editor to edit directory paths. |
PreferenceContentProvider.java | Class | Provides a tree model for PreferenceManager content. |
PreferenceConverter.java | Class | A utility class for dealing with preferences whose values are
common SWT objects (color, points, rectangles, and font data). |
PreferenceDialog.java | Class | A preference dialog is a hierarchical presentation of preference pages. |
PreferenceLabelProvider.java | Class | Provides labels for IPreferenceNode objects. |
PreferenceManager.java | Class | A preference manager maintains a hierarchy of preference nodes and
associated preference pages. |
PreferenceNode.java | Class | A concrete implementation of a node in a preference dialog tree. |
PreferencePage.java | Class | Abstract base implementation for all preference page implementations. |
PreferenceStore.java | Class | A concrete preference store implementation based on an internal
java.util.Properties object, with support for persisting the
non-default preference values to files or streams. |
RadioGroupFieldEditor.java | Class | A field editor for an enumeration type preference. |
ScaleFieldEditor.java | Class | A field editor for an integer type preference. |
StringButtonFieldEditor.java | Class | An abstract field editor for a string type preference that presents
a string input field with a change button to its right to edit the
input field's content. |
StringFieldEditor.java | Class | A field editor for a string type preference. |