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()
           
 TreePath HtmlTree.getSelectionPath()
           
protected static TreePath HtmlTreeNode.translatePath(int[] path, TreeModel model)
           
 

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

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

Methods in org.apache.myfaces.custom.tree.event that return TreePath
 TreePath TreeSelectionEvent.getNewSelectionPath()
          Answer the path of the current (new) selection.
 TreePath TreeSelectionEvent.getOldSelectionPath()
          Answer the path of the old 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.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.
 TreePath TreePath.pathByAddingChild(Object child)
          Return a new path by appending child to this path.
 

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

Constructors in org.apache.myfaces.custom.tree.model with parameters of type TreePath
TreeModelEvent(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.
TreeModelEvent(Object source, TreePath path, int[] childIndices, 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.
TreePath(TreePath parent, Object lastElement)
          Construct a new TreePath, which is the path identified by parent ending in lastElement.
 



Copyright © 2012 The Apache Software Foundation. All Rights Reserved.