public final class ForStmt extends Statement implements NodeWithBody<ForStmt>
Node.ObserverRegistrationMode
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration
Constructor and Description |
---|
ForStmt() |
ForStmt(NodeList<Expression> initialization,
Expression compare,
NodeList<Expression> update,
Statement body) |
ForStmt(Range range,
NodeList<Expression> initialization,
Expression compare,
NodeList<Expression> update,
Statement body) |
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.
|
Statement |
getBody() |
Optional<Expression> |
getCompare() |
NodeList<Expression> |
getInitialization() |
NodeList<Expression> |
getUpdate() |
ForStmt |
setBody(Statement body) |
ForStmt |
setCompare(Expression compare)
Sets the compare
|
ForStmt |
setInitialization(NodeList<Expression> initialization) |
ForStmt |
setUpdate(NodeList<Expression> update) |
addOrphanComment, clone, containsWithin, equals, getAllContainedComments, getBegin, getChildNodes, getComment, getData, getEnd, getNodeLists, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getRange, hasComment, hashCode, isPositionedAfter, isPositionedBefore, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setRange, toString, toString, tryAddImportToParentCompilationUnit, unregister
finalize, getClass, notify, notifyAll, wait, wait, wait
createBlockStatementAsBody
getAncestorOfType, setAsParentNodeOf, setAsParentNodeOf
public ForStmt()
public ForStmt(NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body)
public ForStmt(Range range, NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body)
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 Statement getBody()
getBody
in interface NodeWithBody<ForStmt>
public Optional<Expression> getCompare()
public NodeList<Expression> getInitialization()
public NodeList<Expression> getUpdate()
public ForStmt setBody(Statement body)
setBody
in interface NodeWithBody<ForStmt>
public ForStmt setCompare(Expression compare)
compare
- the compare, can be nullpublic ForStmt setInitialization(NodeList<Expression> initialization)
public ForStmt setUpdate(NodeList<Expression> update)
Copyright © 2007–2016. All rights reserved.