parser
Class ExpressionParser.Visitor

java.lang.Object
  |
  +--parser.ExpressionParser.Visitor
Enclosing class:
ExpressionParser

public static class ExpressionParser.Visitor
extends java.lang.Object

A visitor of the visitor design pattern.

Since:
notavaCC 1.0

Constructor Summary
ExpressionParser.Visitor()
           
 
Method Summary
 void visit(ExpressionParser.Node node)
          The visit method.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExpressionParser.Visitor

public ExpressionParser.Visitor()
Method Detail

visit

public void visit(ExpressionParser.Node node)
The visit method. The implementation of the class calls, using reflection, other public methods whose names are visitor, that have only one argument whose type is compatible with node, and that have no throws clause.

Parameters:
node - the node that the visitor visits.
Since:
notavaCC 1.0