minijava.syntaxtree
Class Goal
java.lang.Object
minijava.syntaxtree.Goal
- All Implemented Interfaces:
- java.io.Serializable, Node
public class Goal
- extends java.lang.Object
- implements Node
Grammar production:
mainClass -> MainClass()
nodeListOptional -> ( TypeDeclaration() )*
nodeToken -> <EOF>
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
mainClass
public MainClass mainClass
nodeListOptional
public NodeListOptional nodeListOptional
nodeToken
public NodeToken nodeToken
Goal
public Goal(MainClass n0,
NodeListOptional n1,
NodeToken n2)
Goal
public Goal(MainClass n0,
NodeListOptional n1)
accept
public void accept(Visitor v)
- Specified by:
accept in interface Node
accept
public <R,A> R accept(GJVisitor<R,A> v,
A argu)
- Specified by:
accept in interface Node
accept
public <R> R accept(GJNoArguVisitor<R> v)
- Specified by:
accept in interface Node
accept
public <A> void accept(GJVoidVisitor<A> v,
A argu)
- Specified by:
accept in interface Node