SMACS

smacs.sql.syntaxtree
Class PlSqlStatement

java.lang.Object
  extended bysmacs.sql.syntaxtree.PlSqlStatement
All Implemented Interfaces:
Node, Serializable

public class PlSqlStatement
extends Object
implements Node

Grammar production:

 nodeChoice -> SqlSubroutineCall()
       | SqlAssignmentStatement()
       | SqlExitStatement()
       | SqlGotoStatement()
       | SqlIfStatement()
       | SqlLoopStatement()
       | SqlNullStatement()
       | SqlRaiseStatement()
       | SqlReturnStatement()
       | SqlStatement()
       | SqlLabelDeclaration()
       | [ SqlDeclarationSection() ] SqlBeginEndBlock()
 

See Also:
Serialized Form

Field Summary
 NodeChoice nodeChoice
           
 
Constructor Summary
PlSqlStatement(NodeChoice n0)
           
 
Method Summary
 Object accept(ObjectVisitor v, Object argu)
           
 void accept(Visitor v)
           
 Node getParent()
           
 void setParent(Node n)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

nodeChoice

public NodeChoice nodeChoice
Constructor Detail

PlSqlStatement

public PlSqlStatement(NodeChoice n0)
Method Detail

accept

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

accept

public Object accept(ObjectVisitor v,
                     Object argu)
Specified by:
accept in interface Node

setParent

public void setParent(Node n)
Specified by:
setParent in interface Node

getParent

public Node getParent()
Specified by:
getParent in interface Node

SMACS