Main Page   Class Hierarchy   Compound List   File List   Compound Members  

Failure Class Reference

Inheritance diagram for Failure::

LogicTree List of all members.

Public Methods

void toStringBuffer (String indentation, StringBuffer buffer)

Private Methods

 Failure (String cause)

Private Attributes

String cause

Detailed Description

a LogicTree tree representing the result of illegal input

Definition at line 289 of file LogicTree.java.


Constructor & Destructor Documentation

Failure::Failure ( String cause ) [inline, private]
 

Construct a failure indicator.

Definition at line 302 of file LogicTree.java.

00303   {
00304   this.cause = cause;
00305   }


Member Function Documentation

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

Put the tree's representation into a StringBuffer.

Reimplemented from LogicTree.

Definition at line 307 of file LogicTree.java.

00308   {
00309   buffer.append(indentation);
00310   buffer.append("*** error: " + cause);
00311   buffer.append("\n"); 
00312   }


Member Data Documentation

String Failure::cause [private]
 

description of the cause of failure

Definition at line 295 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