openjava.ptree
Class ConstructorInvocation
java.lang.Object
|
+--openjava.ptree.ParseTreeObject
|
+--openjava.ptree.NonLeaf
|
+--openjava.ptree.ConstructorInvocation
- All Implemented Interfaces:
- java.lang.Cloneable, ParseTree
- public class ConstructorInvocation
- extends NonLeaf
The ConstructorInvocation class presents expression statement node
of parse tree
- See Also:
ParseTree
,
NonLeaf
,
Statement
,
ExpressionList
Methods inherited from class openjava.ptree.NonLeaf |
childrenAccept, elementAt, equals, getComment, getContents, getLength, makeRecursiveCopy, replaceChildWith, set, set, set, set, set, set, set, set, set, setComment, setElementAt |
Methods inherited from class openjava.ptree.ParseTreeObject |
clone, eq, eq, equal, flushPrintWriter, getDebugFlag, getNest, getObjectID, getParent, getPrintWriter, getTab, hashCode, lastObjectID, makeCopy, popNest, popPrintWriter, pushNest, pushPrintWriter, replace, setDebugFlag, setDebugLevel, setNest, setParent, setPrintStream, setTab, toFlattenString, toString, writeDebug, writeDebugL, writeDebugLln, writeDebugln, writeDebugLR, writeDebugR, writeDebugRln, writeTab |
Methods inherited from class java.lang.Object |
equals, finalize, getClass, notify, notifyAll, wait, wait, wait |
ConstructorInvocation
public ConstructorInvocation(ExpressionList exprs)
- Constructs a new constructor invocation.
i.e.
this(..)
- Parameters:
exprs
- arguments for this constructor invocation
ConstructorInvocation
public ConstructorInvocation(ExpressionList exprs,
Expression enclosing)
- Constructs a new constructor invocation.
i.e.
super(..)
- Parameters:
exprs
- arguments for this constructor invocationenclosing
- outerclass qualifier.
writeCode
public void writeCode()
- Description copied from class:
NonLeaf
- Writes the code this parse-tree presents for.
- Overrides:
writeCode
in class NonLeaf
isSelfInvocation
public boolean isSelfInvocation()
- need modification for copy
getArguments
public ExpressionList getArguments()
- Gets the expressions as arguments for this invocation.
- Returns:
- the expressions.
getEnclosing
public Expression getEnclosing()
accept
public void accept(ParseTreeVisitor v)
throws ParseTreeException
- Description copied from interface:
ParseTree
- Accepts a
ParseTreeVisitor
object as the role of a
Visitor in the Visitor pattern, as the role of an Element in the
Visitor pattern.
This invoke an appropriate visit()
method on the
accepted visitor.
- Overrides:
accept
in class ParseTreeObject
- Following copied from interface:
openjava.ptree.ParseTree
- Parameters:
visitor
- a visitor