Uses of Class
org.basex.data.PathNode

Packages that use PathNode
org.basex.data This package contains the main database structures. 
 

Uses of PathNode in org.basex.data
 

Fields in org.basex.data declared as PathNode
 PathNode[] PathNode.ch
          Children.
 PathNode PathNode.par
          Parent.
 PathNode PathSummary.root
          Root node.
 

Methods in org.basex.data that return types with arguments of type PathNode
 ArrayList<PathNode> PathSummary.desc(ArrayList<PathNode> in, boolean desc)
          Returns all children or descendants of the specified nodes.
 ArrayList<PathNode> PathSummary.parent(ArrayList<PathNode> in)
          Returns all parents of the specified nodes.
 ArrayList<PathNode> PathSummary.root()
          Returns the root node.
 

Methods in org.basex.data with parameters of type PathNode
 void PathSummary.desc(PathNode in, ArrayList<PathNode> out, int t, int k, boolean desc)
          Adds nodes to the hash set if they comply to the specified arguments.
 

Method parameters in org.basex.data with type arguments of type PathNode
 void PathNode.addDesc(ArrayList<PathNode> nodes)
          Recursively adds the node and its descendants to the specified list.
 ArrayList<PathNode> PathSummary.desc(ArrayList<PathNode> in, boolean desc)
          Returns all children or descendants of the specified nodes.
 void PathSummary.desc(PathNode in, ArrayList<PathNode> out, int t, int k, boolean desc)
          Adds nodes to the hash set if they comply to the specified arguments.
 ArrayList<PathNode> PathSummary.parent(ArrayList<PathNode> in)
          Returns all parents of the specified nodes.