Example usage for Java org.eclipse.jface.preference PreferenceManager fields, constructors, methods, implement or subclass
The text is from its open source code.
int | PRE_ORDER Pre-order traversal means visit the root first, then the children. |
int | POST_ORDER Post-order means visit the children, and then the root. |
PreferenceManager() Creates a new preference manager. | |
PreferenceManager(final char separatorChar) Creates a new preference manager with the given path separator. | |
PreferenceManager(final char separatorChar, PreferenceNode rootNode) Creates a new preference manager with the given path separator and root node. |
boolean | addTo(String path, IPreferenceNode node) Adds the given preference node as a subnode of the node at the given path. |
void | addToRoot(IPreferenceNode node) Adds the given preference node as a subnode of the root. |
IPreferenceNode | find(String path) Finds and returns the contribution node at the given path. |
List | getElements(int order) Returns all preference nodes managed by this manager. |
IPreferenceNode[] | getRootSubNodes() Returns the root level nodes of this preference manager. |
IPreferenceNode | remove(String path) Removes the preference node at the given path. |
boolean | remove(IPreferenceNode node) Removes the given preference node if it is managed by this contribution manager. |
void | removeAll() Removes all contribution nodes known to this manager. |