|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IPreferenceStore | |
---|---|
org.eclipse.jface.preference | Provides a framework for preferences. |
org.eclipse.ui | Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface. |
org.eclipse.ui.plugin | Class hierarchies for plug-ins that integrate with the Eclipse Platform UI. |
org.eclipse.ui.preferences | Classes for using the preferences support in org.eclipse.core.runtime.preferences Package Specification This package has the convenience classes provided by the Eclipse workbench for use by clients who wish to use the core preference support added in 3.0. |
Uses of IPreferenceStore in org.eclipse.jface.preference |
---|
Subinterfaces of IPreferenceStore in org.eclipse.jface.preference | |
---|---|
interface |
IPersistentPreferenceStore
IPersistentPreferenceStore is a preference store that can be saved. |
Classes in org.eclipse.jface.preference that implement IPreferenceStore | |
---|---|
class |
PreferenceStore
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. |
Methods in org.eclipse.jface.preference that return IPreferenceStore | |
---|---|
protected IPreferenceStore |
PreferencePage.doGetPreferenceStore()
Returns the preference store of this preference page. |
IPreferenceStore |
IPreferencePageContainer.getPreferenceStore()
Returns the preference store. |
static IPreferenceStore |
JFacePreferences.getPreferenceStore()
Return the preference store for the receiver. |
IPreferenceStore |
PreferenceDialog.getPreferenceStore()
|
IPreferenceStore |
PreferencePage.getPreferenceStore()
Returns the preference store of this preference page. |
Methods in org.eclipse.jface.preference with parameters of type IPreferenceStore | |
---|---|
static RGB |
PreferenceConverter.getColor(IPreferenceStore store,
java.lang.String name)
Returns the current value of the color-valued preference with the given name in the given preference store. |
static RGB |
PreferenceConverter.getDefaultColor(IPreferenceStore store,
java.lang.String name)
Returns the default value for the color-valued preference with the given name in the given preference store. |
static FontData |
PreferenceConverter.getDefaultFontData(IPreferenceStore store,
java.lang.String name)
Returns a single default value for the font-valued preference with the given name in the given preference store. |
static FontData[] |
PreferenceConverter.getDefaultFontDataArray(IPreferenceStore store,
java.lang.String name)
Returns the default value array for the font-valued preference with the given name in the given preference store. |
static Point |
PreferenceConverter.getDefaultPoint(IPreferenceStore store,
java.lang.String name)
Returns the default value for the point-valued preference with the given name in the given preference store. |
static Rectangle |
PreferenceConverter.getDefaultRectangle(IPreferenceStore store,
java.lang.String name)
Returns the default value for the rectangle-valued preference with the given name in the given preference store. |
static FontData |
PreferenceConverter.getFontData(IPreferenceStore store,
java.lang.String name)
Returns the current value of the first entry of the font-valued preference with the given name in the given preference store. |
static FontData[] |
PreferenceConverter.getFontDataArray(IPreferenceStore store,
java.lang.String name)
Returns the current value of the font-valued preference with the given name in the given preference store. |
static Point |
PreferenceConverter.getPoint(IPreferenceStore store,
java.lang.String name)
Returns the current value of the point-valued preference with the given name in the given preference store. |
static Rectangle |
PreferenceConverter.getRectangle(IPreferenceStore store,
java.lang.String name)
Returns the current value of the rectangle-valued preference with the given name in the given preference store. |
static void |
PreferenceConverter.putValue(IPreferenceStore store,
java.lang.String name,
FontData[] value)
Sets the current value of the preference with the given name in the given preference store. |
static void |
PreferenceConverter.setDefault(IPreferenceStore store,
java.lang.String name,
FontData value)
Sets the default value of the preference with the given name in the given preference store. |
static void |
PreferenceConverter.setDefault(IPreferenceStore store,
java.lang.String name,
FontData[] value)
Sets the default value of the preference with the given name in the given preference store. |
static void |
PreferenceConverter.setDefault(IPreferenceStore store,
java.lang.String name,
Point value)
Sets the default value of the preference with the given name in the given preference store. |
static void |
PreferenceConverter.setDefault(IPreferenceStore store,
java.lang.String name,
Rectangle value)
Sets the default value of the preference with the given name in the given preference store. |
static void |
PreferenceConverter.setDefault(IPreferenceStore store,
java.lang.String name,
RGB value)
Sets the default value of the preference with the given name in the given preference store. |
static void |
JFacePreferences.setPreferenceStore(IPreferenceStore store)
Set the preference store for the receiver. |
void |
PreferenceDialog.setPreferenceStore(IPreferenceStore store)
Sets the preference store for this preference dialog. |
void |
PreferencePage.setPreferenceStore(IPreferenceStore store)
Sets the preference store for this preference page. |
static void |
PreferenceConverter.setValue(IPreferenceStore store,
java.lang.String name,
FontData value)
Sets the current value of the preference with the given name in the given preference store. |
static void |
PreferenceConverter.setValue(IPreferenceStore store,
java.lang.String name,
FontData[] value)
Sets the current value of the preference with the given name in the given preference store. |
static void |
PreferenceConverter.setValue(IPreferenceStore store,
java.lang.String name,
Point value)
Sets the current value of the preference with the given name in the given preference store. |
static void |
PreferenceConverter.setValue(IPreferenceStore store,
java.lang.String name,
Rectangle value)
Sets the current value of the preference with the given name in the given preference store. |
static void |
PreferenceConverter.setValue(IPreferenceStore store,
java.lang.String name,
RGB value)
Sets the current value of the preference with the given name in the given preference store. |
Uses of IPreferenceStore in org.eclipse.ui |
---|
Methods in org.eclipse.ui that return IPreferenceStore | |
---|---|
IPreferenceStore |
IWorkbench.getPreferenceStore()
Returns the org.eclipse.jface.preference store for the workbench. |
static IPreferenceStore |
PlatformUI.getPreferenceStore()
Returns the org.eclipse.jface.preference store used for publicly settable workbench preferences. |
Uses of IPreferenceStore in org.eclipse.ui.plugin |
---|
Methods in org.eclipse.ui.plugin that return IPreferenceStore | |
---|---|
IPreferenceStore |
AbstractUIPlugin.getPreferenceStore()
Returns the org.eclipse.jface.preference store for this UI plug-in. |
Methods in org.eclipse.ui.plugin with parameters of type IPreferenceStore | |
---|---|
protected void |
AbstractUIPlugin.initializeDefaultPreferences(IPreferenceStore store)
Deprecated. this is only called if the runtime compatibility layer is present. See AbstractUIPlugin.initializeDefaultPluginPreferences() . |
Uses of IPreferenceStore in org.eclipse.ui.preferences |
---|
Classes in org.eclipse.ui.preferences that implement IPreferenceStore | |
---|---|
class |
ScopedPreferenceStore
The ScopedPreferenceStore is an IPreferenceStore that uses the scopes provided in org.eclipse.core.runtime.preferences. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |