|
Eclipse Platform Release 3.0 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.eclipse.core.runtime.Preferences
A table of preference settings, mapping named properties to values. Property names are non-empty strings; property values can be either booleans, non-null strings, or values of one of the primitive number types. The table consists of two, sparse, layers: the lower layer holds default values for properties, and the upper layer holds explicitly set values for properties. Normal retrieval looks for an explicitly set value for the given property in the upper layer; if there is nothing for that property in the upper layer, it next looks for a default value for the given property in the lower layer; if there is nothing for that property in the lower layer, it returns a standard default-default value. The default-default values for the primitive types are as follows:
Internally, all properties values (in both layers) are stored as strings. Standard conversions to and from numeric and boolean types are performed on demand.
The typical usage is to establish the defaults for all known properties and then restore previously stored values for properties whose values were explicitly set. The existing settings can be changed and new properties can be set (setValue). If the values specified is the same as the default value, the explicit setting is deleted from the top layer. It is also possible to reset a property value back to the default value using setToDefault. After the properties have been modified, the properties with explicit settings are written to disk. The default values are never saved. This two-tiered approach to saving and restoring property setting minimizes the number of properties that need to be persisted; indeed, the normal starting state does not require storing any properties at all. It also makes it easy to use different default settings in different environments while maintaining just those property settings the user has adjusted.
A property change event is reported whenever a property's value actually changes (either through setValue, setToDefault). Note, however, that manipulating default values (with setDefault) does not cause any events to be reported.
Clients may instantiate this class. This class was not designed to be subclassed.
The implementation is based on a pair of internal java.util.Properties objects, one holding explicitly set values (set using setValue), the other holding the default values (set using setDefaultValue). The load and store methods persist the non-default property values to streams (the default values are not saved).
If a client sets a default value to be equivalent to the default-default for that type, the value is still known to the preference store as having a default value. That is, the name will still be returned in the result of the defaultPropertyNames and contains methods.
Nested Class Summary | |
static interface | Preferences.IPropertyChangeListener
Listener for property changes. |
static class | Preferences.PropertyChangeEvent
An event object describing a change to a named property. |
Field Summary | |
static boolean | BOOLEAN_DEFAULT_DEFAULT
The default-default value for boolean properties (false). |
protected boolean | dirty
Indicates whether a value has been changed by setToDefault or setValue; initially false. |
static double | DOUBLE_DEFAULT_DEFAULT
The default-default value for double properties (0.0). |
protected static String | FALSE
The string representation used for false ("false"). |
static float | FLOAT_DEFAULT_DEFAULT
The default-default value for float properties (0.0f). |
static int | INT_DEFAULT_DEFAULT
The default-default value for int properties (0). |
protected org.eclipse.core.internal.runtime.ListenerList | listeners
List of registered listeners (element type: IPropertyChangeListener). |
static long | LONG_DEFAULT_DEFAULT
The default-default value for long properties (0L). |
static String | STRING_DEFAULT_DEFAULT
The default-default value for String properties (""). |
protected static String | TRUE
The string representation used for true ("true"). |
Constructor Summary | |
Preferences()
Creates an empty preference table. |
Method Summary | |
void | addPropertyChangeListener(Preferences.IPropertyChangeListener listener)
Adds a property change listener to this preference object. |
boolean | contains(String name)
Returns whether the given property is known to this preference object, either by having an explicit setting or by having a default setting. |
String[] | defaultPropertyNames()
Returns a list of all properties known to this preference object which have an explicit default value set. |
static void | exportPreferences(IPath path)
Exports all non-default-valued preferences for all installed plugins to the provided file. |
protected void | firePropertyChangeEvent(String name,
Object oldValue,
Object newValue)
Fires a property change event corresponding to a change to the current value of the property with the given name. |
boolean | getBoolean(String name)
Returns the current value of the boolean-valued property with the given name. |
boolean | getDefaultBoolean(String name)
Returns the default value for the boolean-valued property with the given name. |
double | getDefaultDouble(String name)
Returns the default value for the double-valued property with the given name. |
float | getDefaultFloat(String name)
Returns the default value for the float-valued property with the given name. |
int | getDefaultInt(String name)
Returns the default value for the integer-valued property with the given name. |
long | getDefaultLong(String name)
Returns the default value for the long-valued property with the given name. |
String | getDefaultString(String name)
Returns the default value for the string-valued property with the given name. |
double | getDouble(String name)
Returns the current value of the double-valued property with the given name. |
float | getFloat(String name)
Returns the current value of the float-valued property with the given name. |
int | getInt(String name)
Returns the current value of the integer-valued property with the given name. |
long | getLong(String name)
Returns the current value of the long-valued property with the given name. |
String | getString(String name)
Returns the current value of the string-valued property with the given name. |
static void | importPreferences(IPath path)
Loads the plugin preferences from the given file, and replaces all non-default-valued preferences for all plugins with the values from this file. |
boolean | isDefault(String name)
Returns whether the property with the given name has the default value in virtue of having no explicitly set value. |
void | load(InputStream in)
Loads the non-default-valued properties for this preference object from the given input stream using java.util.Properties.load(InputStream). |
boolean | needsSaving()
Returns whether the current values in this preference object require saving. |
String[] | propertyNames()
Returns a list of all properties known to this preference object which have current values other than their default value. |
void | removePropertyChangeListener(Preferences.IPropertyChangeListener listener)
Removes the given listener from this preference object. |
void | setDefault(String name,
boolean value)
Sets the default value for the boolean-valued property with the given name. |
void | setDefault(String name,
double value)
Sets the default value for the double-valued property with the given name. |
void | setDefault(String name,
float value)
Sets the default value for the float-valued property with the given name. |
void | setDefault(String name,
int value)
Sets the default value for the integer-valued property with the given name. |
void | setDefault(String name,
long value)
Sets the default value for the long-valued property with the given name. |
void | setDefault(String name,
String value)
Sets the default value for the string-valued property with the given name. |
void | setToDefault(String name)
Sets the current value of the property with the given name back to its default value. |
void | setValue(String name,
boolean value)
Sets the current value of the boolean-valued property with the given name. |
void | setValue(String name,
double value)
Sets the current value of the double-valued property with the given name. |
void | setValue(String name,
float value)
Sets the current value of the float-valued property with the given name. |
void | setValue(String name,
int value)
Sets the current value of the integer-valued property with the given name. |
void | setValue(String name,
long value)
Sets the current value of the long-valued property with the given name. |
void | setValue(String name,
String value)
Sets the current value of the string-valued property with the given name. |
void | store(OutputStream out,
String header)
Saves the non-default-valued properties known to this preference object to the given output stream using Properties.store(OutputStream,String). |
static IStatus | validatePreferenceVersions(IPath file)
Validates that the preference versions in the given file match the versions of the currently installed plugins. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final boolean BOOLEAN_DEFAULT_DEFAULT
public static final double DOUBLE_DEFAULT_DEFAULT
public static final float FLOAT_DEFAULT_DEFAULT
public static final int INT_DEFAULT_DEFAULT
public static final long LONG_DEFAULT_DEFAULT
public static final String STRING_DEFAULT_DEFAULT
protected static final String TRUE
protected static final String FALSE
protected org.eclipse.core.internal.runtime.ListenerList listeners
protected boolean dirty
Constructor Detail |
public Preferences()
Use the methods load(InputStream) and store(InputStream) to load and store these preferences.
Method Detail |
public static void exportPreferences(IPath path) throws CoreException
The file that is written can be read later using the importPreferences method.
public static void importPreferences(IPath path) throws CoreException
If the file contains preferences for plug-ins that don't exist in the current install, they are ignored. This method does not validate if the plug-in versions in the preference file match the currently installed plug-ins. Clients should first call validatePreferenceVersions on the file to ensure that the versions are compatible.
The file must have been written by the exportPreferences method.
public static IStatus validatePreferenceVersions(IPath file)
If the returned status has a IStatus.WARNING severity, it means that some preferences may not be applicable but for the most part they will be compatible. If the returned status has a IStatus.ERROR severity, it means that the preferences will probably not be compatible.
If the file contains preferences for plug-ins that don't exist in the current install, they are ignored.
The file must have been written by the exportPreferences method.
public void addPropertyChangeListener(Preferences.IPropertyChangeListener listener)
public void removePropertyChangeListener(Preferences.IPropertyChangeListener listener)
public boolean contains(String name)
protected void firePropertyChangeEvent(String name, Object oldValue, Object newValue)
public boolean getBoolean(String name)
public void setValue(String name, boolean value)
A property change event is reported if the current value of the property actually changes from its previous value. In the event object, the property name is the name of the property, and the old and new values are wrapped as objects.
If the given value is the same as the corresponding default value for the given property, the explicit setting is deleted. Note that the recommended way of re-initializing a property to its default value is to call setToDefault.
public boolean getDefaultBoolean(String name)
public void setDefault(String name, boolean value)
Note that the current value of the property is affected if the property's current value was its old default value, in which case it changes to the new default value. If the property's current is different from its old default value, its current value is unaffected. No property change events are reported by changing default values.
public double getDouble(String name)
public void setValue(String name, double value)
A property change event is reported if the current value of the property actually changes from its previous value. In the event object, the property name is the name of the property, and the old and new values are wrapped as objects.
If the given value is the same as the corresponding default value for the given property, the explicit setting is deleted. Note that the recommended way of re-initializing a property to its default value is to call setToDefault.
public double getDefaultDouble(String name)
public void setDefault(String name, double value)
Note that the current value of the property is affected if the property's current value was its old default value, in which case it changes to the new default value. If the property's current is different from its old default value, its current value is unaffected. No property change events are reported by changing default values.
public float getFloat(String name)
public void setValue(String name, float value)
A property change event is reported if the current value of the property actually changes from its previous value. In the event object, the property name is the name of the property, and the old and new values are wrapped as objects.
If the given value is the same as the corresponding default value for the given property, the explicit setting is deleted. Note that the recommended way of re-initializing a property to its default value is to call setToDefault.
public float getDefaultFloat(String name)
public void setDefault(String name, float value)
Note that the current value of the property is affected if the property's current value was its old default value, in which case it changes to the new default value. If the property's current is different from its old default value, its current value is unaffected. No property change events are reported by changing default values.
public int getInt(String name)
public void setValue(String name, int value)
A property change event is reported if the current value of the property actually changes from its previous value. In the event object, the property name is the name of the property, and the old and new values are wrapped as objects.
If the given value is the same as the corresponding default value for the given property, the explicit setting is deleted. Note that the recommended way of re-initializing a property to its default value is to call setToDefault.
public int getDefaultInt(String name)
public void setDefault(String name, int value)
Note that the current value of the property is affected if the property's current value was its old default value, in which case it changes to the new default value. If the property's current is different from its old default value, its current value is unaffected. No property change events are reported by changing default values.
public long getLong(String name)
public void setValue(String name, long value)
A property change event is reported if the current value of the property actually changes from its previous value. In the event object, the property name is the name of the property, and the old and new values are wrapped as objects.
If the given value is the same as the corresponding default value for the given property, the explicit setting is deleted. Note that the recommended way of re-initializing a property to its default value is to call setToDefault.
public long getDefaultLong(String name)
public void setDefault(String name, long value)
Note that the current value of the property is affected if the property's current value was its old default value, in which case it changes to the new default value. If the property's current is different from its old default value, its current value is unaffected. No property change events are reported by changing default values.
public String getString(String name)
public void setValue(String name, String value)
A property change event is reported if the current value of the property actually changes from its previous value. In the event object, the property name is the name of the property, and the old and new values are wrapped as objects.
If the given value is the same as the corresponding default value for the given property, the explicit setting is deleted. Note that the recommended way of re-initializing a property to its default value is to call setToDefault.
public String getDefaultString(String name)
public void setDefault(String name, String value)
Note that the current value of the property is affected if the property's current value was its old default value, in which case it changes to the new default value. If the property's current is different from its old default value, its current value is unaffected. No property change events are reported by changing default values.
public boolean isDefault(String name)
public void setToDefault(String name)
Note that the recommended way of re-initializing a property to the appropriate default value is to call setToDefault. This is implemented by removing the named value from the object, thereby exposing the default value.
A property change event is always reported. In the event object, the property name is the name of the property, and the old and new values are either strings, or null indicating the default-default value.
public String[] propertyNames()
public String[] defaultPropertyNames()
public boolean needsSaving()
public void store(OutputStream out, String header) throws IOException
Note that the output is unconditionally written, even when needsSaving is false.
public void load(InputStream in) throws IOException
|
Eclipse Platform Release 3.0 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Guidelines for using Eclipse APIs.
Copyright (c) IBM Corp. and others 2000, 2004. All rights reserved.