SMACS

smacs.sql.syntaxtree
Class PlSqlExpotentExpression

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

public class PlSqlExpotentExpression
extends Object
implements Node

Grammar production:

 plSqlUnaryExpressions -> PlSqlUnaryExpressions()
 nodeList -> ( "**" PlSqlUnaryExpressions() )+
 

See Also:
Serialized Form

Field Summary
 NodeList nodeList
           
 PlSqlUnaryExpressions plSqlUnaryExpressions
           
 
Constructor Summary
PlSqlExpotentExpression(PlSqlUnaryExpressions n0, NodeList n1)
           
 
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

plSqlUnaryExpressions

public PlSqlUnaryExpressions plSqlUnaryExpressions

nodeList

public NodeList nodeList
Constructor Detail

PlSqlExpotentExpression

public PlSqlExpotentExpression(PlSqlUnaryExpressions n0,
                               NodeList n1)
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