jtb.cparser.syntaxtree
Class AssignmentOperator

Object
  extended by AssignmentOperator
All Implemented Interfaces:
Serializable, Node

public class AssignmentOperator
extends Object
implements Node

Grammar production: f0 -> ( "=" | "*=" | "/=" | "%=" | "+=" | "-=" | "<<=" | ">>=" | "&=" | "^=" | "|=" )

See Also:
Serialized Form

Field Summary
 NodeChoice f0
           
 
Constructor Summary
AssignmentOperator(NodeChoice n0)
           
 
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 NodeChoice f0
Constructor Detail

AssignmentOperator

public AssignmentOperator(NodeChoice n0)
Method Detail

accept

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