simple.tree
Class ExprP

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

public class ExprP
extends ParseNode

Author:
Santoso Wijaya

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

Constructor Detail

ExprP

public ExprP(java.lang.String oper,
             Term t,
             ExprP e)
Method Detail

getOper

public java.lang.String getOper()

getTerm

public Term getTerm()

getExprP

public ExprP getExprP()

accept

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