piglet.syntaxtree
Class Goal

java.lang.Object
  extended by piglet.syntaxtree.Goal
All Implemented Interfaces:
java.io.Serializable, Node

public class Goal
extends java.lang.Object
implements Node

Grammar production:

 nodeToken -> "MAIN"
 stmtList -> StmtList()
 nodeToken1 -> "END"
 nodeListOptional -> ( Procedure() )*
 nodeToken2 -> <EOF>
 

See Also:
Serialized Form

Field Summary
 NodeListOptional nodeListOptional
           
 NodeToken nodeToken
           
 NodeToken nodeToken1
           
 NodeToken nodeToken2
           
 StmtList stmtList
           
 
Constructor Summary
Goal(NodeToken n0, StmtList n1, NodeToken n2, NodeListOptional n3, NodeToken n4)
           
Goal(StmtList n0, NodeListOptional n1)
           
 
Method Summary
<R> R
accept(GJNoArguVisitor<R> v)
           
<R,A> R
accept(GJVisitor<R,A> v, A argu)
           
<A> void
accept(GJVoidVisitor<A> v, A argu)
           
 void accept(Visitor v)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

nodeToken

public NodeToken nodeToken

stmtList

public StmtList stmtList

nodeToken1

public NodeToken nodeToken1

nodeListOptional

public NodeListOptional nodeListOptional

nodeToken2

public NodeToken nodeToken2
Constructor Detail

Goal

public Goal(NodeToken n0,
            StmtList n1,
            NodeToken n2,
            NodeListOptional n3,
            NodeToken n4)

Goal

public Goal(StmtList n0,
            NodeListOptional n1)
Method Detail

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