public final class IfStmt extends Statement
Constructor and Description |
---|
IfStmt() |
IfStmt(Expression condition,
Statement thenStmt,
Statement elseStmt) |
IfStmt(int beginLine,
int beginColumn,
int endLine,
int endColumn,
Expression condition,
Statement thenStmt,
Statement elseStmt) |
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.
|
Expression |
getCondition() |
Statement |
getElseStmt() |
Statement |
getThenStmt() |
void |
setCondition(Expression condition) |
void |
setElseStmt(Statement elseStmt) |
void |
setThenStmt(Statement thenStmt) |
equals, getBeginColumn, getBeginLine, getData, getEndColumn, getEndLine, hashCode, setBeginColumn, setBeginLine, setData, setEndColumn, setEndLine, toString
public IfStmt()
public IfStmt(Expression condition, Statement thenStmt, Statement elseStmt)
public IfStmt(int beginLine, int beginColumn, int endLine, int endColumn, Expression condition, Statement thenStmt, Statement elseStmt)
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Node
public <A> void accept(VoidVisitor<A> v, A arg)
Node
public Expression getCondition()
public Statement getElseStmt()
public Statement getThenStmt()
public void setCondition(Expression condition)
public void setElseStmt(Statement elseStmt)
public void setThenStmt(Statement thenStmt)