FTP-Server API

Uses of Interface
graphic.services.tree.TreeNode

Packages that use TreeNode
graphic.services.tree   
 

Uses of TreeNode in graphic.services.tree
 

Classes in graphic.services.tree that implement TreeNode
 class DefaultTreeNode
          This class is a default implementation of a TreeNode.
 

Fields in graphic.services.tree declared as TreeNode
protected  TreeNode BinTree.Root
           
 

Methods in graphic.services.tree that return TreeNode
 TreeNode TreeNode.getLeftNode()
          Returns LeftNode
 TreeNode TreeNode.getRightNode()
          Returns RightNode
 TreeNode DefaultTreeNode.getLeftNode()
           
 TreeNode DefaultTreeNode.getRightNode()
           
 

Methods in graphic.services.tree with parameters of type TreeNode
 void TreeNode.setLeftNode(TreeNode left)
          Saves 'LeftNode' in the data core.
 void TreeNode.setRightNode(TreeNode left)
          Saves 'RightNode' in the data core.
 int TreeNode.compareTo(TreeNode treeNode)
          Compares the node with another node
If the node that is beeing compared with is larger than the node itself, -1 is returned.
 void DefaultTreeNode.setLeftNode(TreeNode left)
           
 void DefaultTreeNode.setRightNode(TreeNode right)
           
 int DefaultTreeNode.compareTo(TreeNode treeNode)
           
 void BinTree.insert(TreeNode newElement)
          Inserts the new TreeNode element into the tree
 boolean BinTree.soeg(String target, TreeNode tree)
          Seeks for a String in the Tree, and returns true if found
 


FTP-Server API