simple.tree
Class Expr

java.lang.Object
  extended by simple.tree.ParseNode
      extended by simple.tree.Expr

public class Expr
extends ParseNode

Author:
santa

Constructor Summary
Expr(Term t, ExprP e)
           
 
Method Summary
 void accept(Visitor v)
           
 ExprP getExprP()
           
 Term getTerm()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Expr

public Expr(Term t,
            ExprP e)
Method Detail

getTerm

public Term getTerm()

getExprP

public ExprP getExprP()

accept

public void accept(Visitor v)
Specified by:
accept in class ParseNode