Uses of Class
lij.model.TreeNode

Packages that use TreeNode
lij.model Classes that together constitute the data model of an LCC protocl. 
lij.parserutil Utility classes for use by the javacc-generated parser. 
lij.runtime These runtime classes are the ones that contain most of the code that is used during the execution of the IM by the interpreter. 
 

Uses of TreeNode in lij.model
 

Fields in lij.model declared as TreeNode
private  TreeNode TreeNode.left
           
private  TreeNode TreeNode.right
           
private  TreeNode Clause.root
           
 

Methods in lij.model that return TreeNode
 TreeNode TreeNode.getLeft()
          Accessor.
 TreeNode TreeNode.getRight()
          Accessor.
 TreeNode Clause.getRoot()
          Accessor.
 

Methods in lij.model with parameters of type TreeNode
 void TreeNode.setLeft(TreeNode _left)
          Accessor.
 void TreeNode.setRight(TreeNode _right)
          Accessor.
 

Constructors in lij.model with parameters of type TreeNode
Clause(DefAgent _agent, TreeNode _root)
          Constructor.
 

Uses of TreeNode in lij.parserutil
 

Methods in lij.parserutil that return TreeNode
 TreeNode TreeFactory.createTreeRoot()
          Converts the RPN list into a tree and returns the root node.
 

Uses of TreeNode in lij.runtime
 

Methods in lij.runtime that return TreeNode
 TreeNode ClauseInstance.getRoot()
          Convenience method for accessing the root node of the Clause encapsulated in this ClauseInstance.