Uses of Class
org.eclipse.jdt.core.dom.Statement
-
Packages that use Statement Package Description org.eclipse.jdt.core.dom 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
Subclasses of Statement in org.eclipse.jdt.core.dom Modifier and Type Class Description classAssertStatementAssert statement AST node type.classBlockBlock statement AST node type.classBreakStatementBreak statement AST node type.classConstructorInvocationAlternate constructor invocation statement AST node type.classContinueStatementContinue statement AST node type.classDoStatementDo statement AST node type.classEmptyStatementNull statement AST node type.classEnhancedForStatementEnhanced For statement AST node type (added in JLS3 API).classExpressionStatementExpression statement AST node type.classForStatementFor statement AST node type.classIfStatementIf statement AST node type.classLabeledStatementLabeled statement AST node type.classReturnStatementReturn statement AST node type.classSuperConstructorInvocationSuper constructor invocation statement AST node type.classSwitchCaseSwitch case AST node type.classSwitchStatementSwitch statement AST node type.classSynchronizedStatementSynchronized statement AST node type.classThrowStatementThrow statement AST node type.classTryStatementTry statement AST node type.classTypeDeclarationStatementLocal type declaration statement AST node type.classVariableDeclarationStatementLocal variable declaration statement AST node type.classWhileStatementWhile statement AST node type.classYieldStatementYield statement AST node type.Methods in org.eclipse.jdt.core.dom that return Statement Modifier and Type Method Description StatementDoStatement. getBody()Returns the body of this do statement.StatementEnhancedForStatement. getBody()Returns the body of this enchanced for statement.StatementForStatement. getBody()Returns the body of this for statement.StatementLabeledStatement. getBody()Returns the body of this labeled statement.StatementWhileStatement. getBody()Returns the body of this while statement.StatementIfStatement. getElseStatement()Returns the "else" part of this if statement, ornullif this if statement has no "else" part.StatementIfStatement. getThenStatement()Returns the "then" part of this if statement.Methods in org.eclipse.jdt.core.dom with parameters of type Statement Modifier and Type Method Description voidDoStatement. setBody(Statement statement)Sets the body of this do statement.voidEnhancedForStatement. setBody(Statement statement)Sets the body of this enhanced for statement.voidForStatement. setBody(Statement statement)Sets the body of this for statement.voidLabeledStatement. setBody(Statement statement)Sets the body of this labeled statement.voidWhileStatement. setBody(Statement statement)Sets the body of this while statement.voidIfStatement. setElseStatement(Statement statement)Sets or clears the "else" part of this if statement.voidIfStatement. setThenStatement(Statement statement)Sets the "then" part of this if statement.
-