public final class ExplicitConstructorInvocationStmt extends Statement implements NodeWithTypeArguments<ExplicitConstructorInvocationStmt>
class X { X() { super(15); } }
class X { X() { this(1, 2); } }
Node.ObserverRegistrationMode
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration
Constructor and Description |
---|
ExplicitConstructorInvocationStmt() |
ExplicitConstructorInvocationStmt(boolean isThis,
Expression expression,
NodeList<Expression> arguments) |
ExplicitConstructorInvocationStmt(NodeList<Type> typeArguments,
boolean isThis,
Expression expression,
NodeList<Expression> arguments) |
ExplicitConstructorInvocationStmt(Range range,
NodeList<Type> typeArguments,
boolean isThis,
Expression expression,
NodeList<Expression> arguments) |
Modifier and Type | Method and Description |
---|---|
<R,A> R |
accept(GenericVisitor<R,A> v,
A arg)
Accept method for visitor support.
|
<A> void |
accept(VoidVisitor<A> v,
A arg)
Accept method for visitor support.
|
ExplicitConstructorInvocationStmt |
addArgument(Expression argument) |
Expression |
getArgument(int i) |
NodeList<Expression> |
getArguments() |
Optional<Expression> |
getExpression() |
List<NodeList<?>> |
getNodeLists()
The list of NodeLists owned by this node.
|
Optional<NodeList<Type>> |
getTypeArguments() |
boolean |
isThis() |
ExplicitConstructorInvocationStmt |
setArgument(int i,
Expression argument) |
ExplicitConstructorInvocationStmt |
setArguments(NodeList<Expression> arguments) |
ExplicitConstructorInvocationStmt |
setExpression(Expression expression)
Sets the expression
|
ExplicitConstructorInvocationStmt |
setThis(boolean isThis) |
ExplicitConstructorInvocationStmt |
setTypeArguments(NodeList<Type> typeArguments)
Sets the typeArguments
|
addOrphanComment, clone, containsWithin, equals, getAllContainedComments, getBegin, getChildNodes, getComment, getData, getEnd, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getRange, hasComment, hashCode, isPositionedAfter, isPositionedBefore, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeOrphanComment, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setRange, toString, toString, tryAddImportToParentCompilationUnit, unregister
finalize, getClass, notify, notifyAll, wait, wait, wait
isUsingDiamondOperator, removeTypeArguments, setDiamondOperator, setTypeArguments
getAncestorOfType, setAsParentNodeOf, setAsParentNodeOf
public ExplicitConstructorInvocationStmt()
public ExplicitConstructorInvocationStmt(boolean isThis, Expression expression, NodeList<Expression> arguments)
public ExplicitConstructorInvocationStmt(NodeList<Type> typeArguments, boolean isThis, Expression expression, NodeList<Expression> arguments)
public ExplicitConstructorInvocationStmt(Range range, NodeList<Type> typeArguments, boolean isThis, Expression expression, NodeList<Expression> arguments)
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Visitable
accept
in interface Visitable
R
- the type of the return value of the visitorA
- the type the user argument passed to the visitorv
- the visitor implementationarg
- the argument passed to the visitor (of type A)public <A> void accept(VoidVisitor<A> v, A arg)
Visitable
public NodeList<Expression> getArguments()
public Expression getArgument(int i)
public ExplicitConstructorInvocationStmt setArgument(int i, Expression argument)
public ExplicitConstructorInvocationStmt addArgument(Expression argument)
public Optional<Expression> getExpression()
public boolean isThis()
public ExplicitConstructorInvocationStmt setArguments(NodeList<Expression> arguments)
public ExplicitConstructorInvocationStmt setExpression(Expression expression)
expression
- the expression, can be nullpublic ExplicitConstructorInvocationStmt setThis(boolean isThis)
public Optional<NodeList<Type>> getTypeArguments()
getTypeArguments
in interface NodeWithTypeArguments<ExplicitConstructorInvocationStmt>
public ExplicitConstructorInvocationStmt setTypeArguments(NodeList<Type> typeArguments)
setTypeArguments
in interface NodeWithTypeArguments<ExplicitConstructorInvocationStmt>
typeArguments
- the typeArguments, can be nullpublic List<NodeList<?>> getNodeLists()
Node
getNodeLists
in class Node
Copyright © 2007–2017. All rights reserved.