Example usage for Java org.eclipse.jface.preference IPreferenceStore fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | BOOLEAN_DEFAULT_DEFAULT The default-default value for boolean preferences ( false ). |
double | DOUBLE_DEFAULT_DEFAULT The default-default value for double preferences ( 0.0 ). |
float | FLOAT_DEFAULT_DEFAULT The default-default value for float preferences ( 0.0f ). |
int | INT_DEFAULT_DEFAULT The default-default value for int preferences ( 0 ). |
long | LONG_DEFAULT_DEFAULT The default-default value for long preferences ( 0L ). |
String | STRING_DEFAULT_DEFAULT The default-default value for String preferences ( "" ). |
String | TRUE The string representation used for true ("true" ). |
String | FALSE The string representation used for false ("false" ). |
void | addPropertyChangeListener(IPropertyChangeListener listener) Adds a property change listener to this preference store. |
boolean | contains(String name) Returns whether the named preference is known to this preference store. |
void | firePropertyChangeEvent(String name, Object oldValue, Object newValue) Fires a property change event corresponding to a change to the current value of the preference with the given name. |
boolean | getBoolean(String name) Returns the current value of the boolean-valued preference with the given name. |
boolean | getDefaultBoolean(String name) Returns the default value for the boolean-valued preference with the given name. |
double | getDefaultDouble(String name) Returns the default value for the double-valued preference with the given name. |
float | getDefaultFloat(String name) Returns the default value for the float-valued preference with the given name. |
int | getDefaultInt(String name) Returns the default value for the integer-valued preference with the given name. |
long | getDefaultLong(String name) Returns the default value for the long-valued preference with the given name. |
String | getDefaultString(String name) Returns the default value for the string-valued preference with the given name. |
double | getDouble(String name) Returns the current value of the double-valued preference with the given name. |
float | getFloat(String name) Returns the current value of the float-valued preference with the given name. |
int | getInt(String name) Returns the current value of the integer-valued preference with the given name. |
long | getLong(String name) Returns the current value of the long-valued preference with the given name. |
String | getString(String name) Returns the current value of the string-valued preference with the given name. |
boolean | isDefault(String name) Returns whether the current value of the preference with the given name has the default value. |
boolean | needsSaving() Returns whether the current values in this property store require saving. |
void | putValue(String name, String value) Sets the current value of the preference with the given name to the given string value without sending a property change. |
void | removePropertyChangeListener(IPropertyChangeListener listener) Removes the given listener from this preference store. |
void | setDefault(String name, double value) Sets the default value for the double-valued preference with the given name. |
void | setDefault(String name, float value) Sets the default value for the float-valued preference with the given name. |
void | setDefault(String name, int value) Sets the default value for the integer-valued preference with the given name. |
void | setDefault(String name, long value) Sets the default value for the long-valued preference with the given name. |
void | setDefault(String name, String defaultObject) Sets the default value for the string-valued preference with the given name. |
void | setDefault(String name, boolean value) Sets the default value for the boolean-valued preference with the given name. |
void | setToDefault(String name) Sets the current value of the preference with the given name back to its default value. |
void | setValue(String name, double value) Sets the current value of the double-valued preference with the given name. |
void | setValue(String name, float value) Sets the current value of the float-valued preference with the given name. |
void | setValue(String name, int value) Sets the current value of the integer-valued preference with the given name. |
void | setValue(String name, long value) Sets the current value of the long-valued preference with the given name. |
void | setValue(String name, String value) Sets the current value of the string-valued preference with the given name. |
void | setValue(String name, boolean value) Sets the current value of the boolean-valued preference with the given name. |