jtb.cparser.syntaxtree
Class EqualityExpression

Object
  extended by EqualityExpression
All Implemented Interfaces:
Serializable, Node

public class EqualityExpression
extends Object
implements Node

Grammar production: f0 -> RelationalExpression() f1 -> [ ( "==" | "!=" ) EqualityExpression() ]

See Also:
Serialized Form

Field Summary
 RelationalExpression f0
           
 NodeOptional f1
           
 
Constructor Summary
EqualityExpression(RelationalExpression n0, NodeOptional n1)
           
 
Method Summary
 void accept(Visitor v)
           
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

f0

public RelationalExpression f0

f1

public NodeOptional f1
Constructor Detail

EqualityExpression

public EqualityExpression(RelationalExpression n0,
                          NodeOptional n1)
Method Detail

accept

public void accept(Visitor v)
Specified by:
accept in interface Node