Uses of Class
org.apache.myfaces.custom.tree.model.TreePath

Packages that use TreePath
org.apache.myfaces.custom.tree   
org.apache.myfaces.custom.tree.event   
org.apache.myfaces.custom.tree.model   
 

Uses of TreePath in org.apache.myfaces.custom.tree
 

Methods in org.apache.myfaces.custom.tree that return TreePath
 TreePath HtmlTreeNode.getPath()
           
protected static TreePath HtmlTreeNode.translatePath(int[] path, TreeModel model)
           
 TreePath HtmlTree.getSelectionPath()
           
 

Methods in org.apache.myfaces.custom.tree with parameters of type TreePath
 void HtmlTreeNode.setPath(TreePath path)
           
protected static int[] HtmlTreeNode.translatePath(TreePath treePath, TreeModel model)
           
 void HtmlTree.expandPath(TreePath path, javax.faces.context.FacesContext context)
          Ensures that the node identified by the specified path is expanded and viewable.
 void HtmlTree.collapsePath(TreePath path, javax.faces.context.FacesContext context)
          Ensures that the node identified by the specified path is collapsed and viewable.
 boolean HtmlTree.isExpanded(TreePath path, javax.faces.context.FacesContext context)
           
 

Uses of TreePath in org.apache.myfaces.custom.tree.event
 

Methods in org.apache.myfaces.custom.tree.event that return TreePath
 TreePath TreeSelectionEvent.getOldSelectionPath()
          Answer the path of the old selection.
 TreePath TreeSelectionEvent.getNewSelectionPath()
          Answer the path of the current (new) selection.
 

Constructors in org.apache.myfaces.custom.tree.event with parameters of type TreePath
TreeSelectionEvent(javax.faces.component.UIComponent uiComponent, TreePath oldSelectionPath, TreePath newSelectionPath)
          Construct an event.
 

Uses of TreePath in org.apache.myfaces.custom.tree.model
 

Methods in org.apache.myfaces.custom.tree.model that return TreePath
 TreePath TreePath.pathByAddingChild(java.lang.Object child)
          Return a new path by appending child to this path.
 TreePath TreePath.getParentPath()
          Return a path containing all the elements of this object, except the last path component.
 TreePath TreeModelEvent.getTreePath()
          For all events, except treeStructureChanged, returns the parent of the changed nodes.
 

Methods in org.apache.myfaces.custom.tree.model with parameters of type TreePath
 boolean TreePath.isDescendant(TreePath path)
          Return true if path is a descendant of this TreePath.
 void TreeModel.valueForPathChanged(TreePath path, java.lang.Object newValue)
          Called when the value for the item identified by path has changed to newValue.
 void DefaultTreeModel.valueForPathChanged(TreePath path, java.lang.Object newValue)
           
protected  void DefaultTreeModel.fireTreeStructureChanged(java.lang.Object source, TreePath path)
          Notify all listeners of structure change.
 

Constructors in org.apache.myfaces.custom.tree.model with parameters of type TreePath
TreePath(TreePath parent, java.lang.Object lastElement)
          Construct a new TreePath, which is the path identified by parent ending in lastElement.
TreeModelEvent(java.lang.Object source, TreePath path, int[] childIndices, java.lang.Object[] children)
          Used to create an event when nodes have been changed, inserted, or removed, identifying the path to the parent of the modified items as a TreePath object.
TreeModelEvent(java.lang.Object source, TreePath path)
          Used to create an event when nodes have been changed, inserted, or removed, identifying the path to the parent of the modified items as a TreePath object.
 



Copyright © 2007 Apache Software Foundation. All Rights Reserved.