Main Page   Class Hierarchy   Compound List   File List   Compound Members  

Unit Class Reference

Inheritance diagram for Unit::

LogicTree False True Var List of all members.

Public Methods

void toStringBuffer (String indentation, StringBuffer buffer)

Private Methods

 Unit (String value)

Private Attributes

String value

Detailed Description

a LogicTree tree that is a leaf, either a constant or variable

Definition at line 257 of file LogicTree.java.


Constructor & Destructor Documentation

Unit::Unit ( String value ) [inline, private]
 

construct a leaf

Definition at line 270 of file LogicTree.java.

00271   {
00272   this.value = value;
00273   }


Member Function Documentation

void Unit::toStringBuffer ( String indentation,
StringBuffer buffer ) [inline, virtual]
 

Put the tree's representation into a StringBuffer.

Reimplemented from LogicTree.

Definition at line 275 of file LogicTree.java.

00276   {
00277   buffer.append(indentation);
00278   buffer.append(value);
00279   buffer.append("\n"); 
00280   }


Member Data Documentation

String Unit::value [private]
 

the representation of this leaf as a string

Definition at line 263 of file LogicTree.java.


The documentation for this class was generated from the following file:
Generated at Wed Mar 26 13:57:26 2003 for LogicParserSupportFiles by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001