Inheritance diagram for Unit::

Public Methods | |
| void | toStringBuffer (String indentation, StringBuffer buffer) |
Private Methods | |
| Unit (String value) | |
Private Attributes | |
| String | value |
Definition at line 257 of file LogicTree.java.
|
|
construct a leaf Definition at line 270 of file LogicTree.java. 00271 {
00272 this.value = value;
00273 }
|
|
|
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 }
|
|
|
the representation of this leaf as a string Definition at line 263 of file LogicTree.java. |
1.2.6 written by Dimitri van Heesch,
© 1997-2001