Uses of Class
org.eclipse.jdt.core.dom.Statement
Package
Description
The Java DOM/AST is the set of classes that model the source code of a Java program
as a structured document.
-
Uses of Statement in org.eclipse.jdt.core.dom
Modifier and TypeClassDescriptionclass
Assert statement AST node type.class
Block statement AST node type.class
Break statement AST node type.class
Alternate constructor invocation statement AST node type.class
Continue statement AST node type.class
Do statement AST node type.class
Null statement AST node type.class
Enhanced For statement AST node type (added in JLS3 API).class
Expression statement AST node type.class
For statement AST node type.class
If statement AST node type.class
Labeled statement AST node type.class
Return statement AST node type.class
Super constructor invocation statement AST node type.class
Switch case AST node type.class
Switch statement AST node type.class
Synchronized statement AST node type.class
Throw statement AST node type.class
Try statement AST node type.class
Local type declaration statement AST node type.class
Local variable declaration statement AST node type.class
While statement AST node type.class
Yield statement AST node type.Modifier and TypeMethodDescriptionDoStatement.getBody()
Returns the body of this do statement.EnhancedForStatement.getBody()
Returns the body of this enchanced for statement.ForStatement.getBody()
Returns the body of this for statement.LabeledStatement.getBody()
Returns the body of this labeled statement.WhileStatement.getBody()
Returns the body of this while statement.IfStatement.getElseStatement()
Returns the "else" part of this if statement, ornull
if this if statement has no "else" part.IfStatement.getThenStatement()
Returns the "then" part of this if statement.Modifier and TypeMethodDescriptionvoid
Sets the body of this do statement.void
Sets the body of this enhanced for statement.void
Sets the body of this for statement.void
Sets the body of this labeled statement.void
Sets the body of this while statement.void
IfStatement.setElseStatement
(Statement statement) Sets or clears the "else" part of this if statement.void
IfStatement.setThenStatement
(Statement statement) Sets the "then" part of this if statement.