Inheritance diagram for UnaryTree::

Public Methods | |
| void | toStringBuffer (String indentation, StringBuffer buffer) |
Private Methods | |
| UnaryTree (String op, LogicTree subtree) | |
Private Attributes | |
| String | op |
| LogicTree | subtree |
Definition at line 218 of file LogicTree.java.
|
|
Construct a logic tree with a generic unary operator. Definition at line 238 of file LogicTree.java. 00239 {
00240 this.op = op;
00241 this.subtree = subtree;
00242 }
|
|
|
Put the tree's representation into a StringBuffer. Reimplemented from LogicTree. Definition at line 244 of file LogicTree.java. 00245 {
00246 buffer.append(indentation);
00247 buffer.append(op);
00248 buffer.append("\n");
00249 subtree.toStringBuffer(indentation + additionalIndentation, buffer);
00250 }
|
|
|
the operator Definition at line 224 of file LogicTree.java. |
|
|
the one subtree of this tree Definition at line 231 of file LogicTree.java. |
1.2.6 written by Dimitri van Heesch,
© 1997-2001