Uses of Interface
org.eclipse.jface.preference.IPreferenceNode

Packages that use IPreferenceNode
org.eclipse.jface.preference Provides a framework for preferences. 
 

Uses of IPreferenceNode in org.eclipse.jface.preference
 

Classes in org.eclipse.jface.preference that implement IPreferenceNode
 class PreferenceNode
          A concrete implementation of a node in a preference dialog tree.
 

Methods in org.eclipse.jface.preference that return IPreferenceNode
 IPreferenceNode PreferenceManager.find(java.lang.String path)
          Finds and returns the contribution node at the given path.
protected  IPreferenceNode PreferenceManager.find(java.lang.String path, IPreferenceNode top)
          Finds and returns the preference node directly below the top at the given path.
 IPreferenceNode PreferenceNode.findSubNode(java.lang.String id)
           
 IPreferenceNode IPreferenceNode.findSubNode(java.lang.String id)
          Returns the subnode of this contribution node with the given node id.
protected  IPreferenceNode PreferenceManager.getRoot()
          Returns the root node.
 IPreferenceNode[] PreferenceNode.getSubNodes()
           
 IPreferenceNode[] IPreferenceNode.getSubNodes()
          Returns an iterator over the subnodes (immediate children) of this contribution node.
 IPreferenceNode PreferenceNode.remove(java.lang.String id)
           
 IPreferenceNode IPreferenceNode.remove(java.lang.String id)
          Removes the subnode of this preference node with the given node id.
 

Methods in org.eclipse.jface.preference with parameters of type IPreferenceNode
 void PreferenceNode.add(IPreferenceNode node)
           
 void IPreferenceNode.add(IPreferenceNode node)
          Adds the given preference node as a subnode of this preference node.
 boolean PreferenceManager.addTo(java.lang.String path, IPreferenceNode node)
          Adds the given preference node as a subnode of the node at the given path.
 void PreferenceManager.addToRoot(IPreferenceNode node)
          Adds the given preference node as a subnode of the root.
protected  void PreferenceManager.buildSequence(IPreferenceNode node, java.util.List sequence, int order)
          Recursively enumerates all nodes at or below the given node and adds them to the given list in the given order.
protected  Composite PreferenceDialog.createPage(IPreferenceNode node)
           
protected  Composite PreferenceDialog.createSubPages(IPreferenceNode node)
           
protected  IPreferenceNode PreferenceManager.find(java.lang.String path, IPreferenceNode top)
          Finds and returns the preference node directly below the top at the given path.
 boolean PreferenceNode.remove(IPreferenceNode node)
           
 boolean PreferenceManager.remove(IPreferenceNode node)
          Removes the given prefreence node if it is managed by this contribution manager.
 boolean IPreferenceNode.remove(IPreferenceNode node)
          Removes the given preference node from the list of subnodes (immediate children) of this node.