Java org.eclipse.jface.preference PreferenceManager fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jface.preference PreferenceManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jface.preference PreferenceManager.

The text is from its open source code.

Subclass

org.eclipse.jface.preference.PreferenceManager has subclasses.
Click this link to see all its subclasses.

Field

intPRE_ORDER
Pre-order traversal means visit the root first, then the children.
intPOST_ORDER
Post-order means visit the children, and then the root.

Constructor

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.

Method

booleanaddTo(String path, IPreferenceNode node)
Adds the given preference node as a subnode of the node at the given path.
voidaddToRoot(IPreferenceNode node)
Adds the given preference node as a subnode of the root.
IPreferenceNodefind(String path)
Finds and returns the contribution node at the given path.
ListgetElements(int order)
Returns all preference nodes managed by this manager.
IPreferenceNode[]getRootSubNodes()
Returns the root level nodes of this preference manager.
IPreferenceNoderemove(String path)
Removes the preference node at the given path.
booleanremove(IPreferenceNode node)
Removes the given preference node if it is managed by this contribution manager.
voidremoveAll()
Removes all contribution nodes known to this manager.