Uses of Class
org.eclipse.jdt.internal.compiler.ast.Statement

Packages that use Statement
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.parser   
org.eclipse.jdt.internal.compiler.problem   
 

Uses of Statement in org.eclipse.jdt.internal.compiler.ast
 

Subclasses of Statement in org.eclipse.jdt.internal.compiler.ast
 class AbstractVariableDeclaration
           
 class AllocationExpression
           
 class AND_AND_Expression
           
 class Annotation
          Annotation
 class Argument
           
 class ArrayAllocationExpression
           
 class ArrayInitializer
           
 class ArrayQualifiedTypeReference
           
 class ArrayReference
           
 class ArrayTypeReference
           
 class AssertStatement
           
 class Assignment
           
 class BinaryExpression
           
 class Block
           
 class BranchStatement
           
 class BreakStatement
           
 class CaseStatement
           
 class CastExpression
           
 class CharLiteral
           
 class ClassLiteralAccess
           
 class CompoundAssignment
           
 class ConditionalExpression
           
 class ContinueStatement
           
 class DoStatement
           
 class DoubleLiteral
           
 class EmptyStatement
           
 class EqualExpression
           
 class ExplicitConstructorCall
           
 class Expression
           
 class ExtendedStringLiteral
           
 class FalseLiteral
           
 class FieldDeclaration
           
 class FieldReference
           
 class FloatLiteral
           
 class ForeachStatement
           
 class ForStatement
           
 class IfStatement
           
 class Initializer
           
 class InstanceOfExpression
           
 class IntLiteral
           
 class IntLiteralMinValue
           
 class JavadocAllocationExpression
           
 class JavadocArgumentExpression
           
 class JavadocArrayQualifiedTypeReference
           
 class JavadocArraySingleTypeReference
           
 class JavadocFieldReference
           
 class JavadocImplicitTypeReference
           
 class JavadocMessageSend
           
 class JavadocQualifiedTypeReference
           
 class JavadocReturnStatement
           
 class JavadocSingleNameReference
           
 class JavadocSingleTypeReference
           
 class LabeledStatement
           
 class Literal
           
 class LocalDeclaration
           
 class LongLiteral
           
 class LongLiteralMinValue
           
 class MagicLiteral
           
 class MarkerAnnotation
           
 class MessageSend
           
 class NameReference
           
 class NormalAnnotation
          Normal annotation node
 class NullLiteral
           
 class NumberLiteral
           
 class OperatorExpression
           
 class OR_OR_Expression
           
 class ParameterizedQualifiedTypeReference
          Syntactic representation of a reference to a generic type.
 class ParameterizedSingleTypeReference
          Syntactic representation of a reference to a generic type.
 class PostfixExpression
           
 class PrefixExpression
           
 class QualifiedAllocationExpression
          Variation on allocation, where can optionally be specified any of: - leading enclosing instance - trailing anonymous type - generic type arguments for generic constructor invocation
 class QualifiedNameReference
           
 class QualifiedSuperReference
           
 class QualifiedThisReference
           
 class QualifiedTypeReference
           
 class Reference
           
 class ReturnStatement
           
 class SingleMemberAnnotation
          SingleMemberAnnotation node
 class SingleNameReference
           
 class SingleTypeReference
           
 class StringLiteral
           
 class StringLiteralConcatenation
          Flatten string literal
 class SubRoutineStatement
          Extra behavior for statements which are generating subroutines
 class SuperReference
           
 class SwitchStatement
           
 class SynchronizedStatement
           
 class ThisReference
           
 class ThrowStatement
           
 class TrueLiteral
           
 class TryStatement
           
 class TypeDeclaration
           
 class TypeParameter
           
 class TypeReference
           
 class UnaryExpression
           
 class WhileStatement
           
 class Wildcard
          Node to represent Wildcard
 

Fields in org.eclipse.jdt.internal.compiler.ast declared as Statement
 Statement DoStatement.action
           
 Statement ForStatement.action
           
 Statement WhileStatement.action
           
 Statement ForeachStatement.action
           
 Statement IfStatement.elseStatement
           
 Statement[] ForStatement.increments
           
 Statement[] ForStatement.initializations
           
 Statement LabeledStatement.statement
           
 Statement[] AbstractMethodDeclaration.statements
           
 Statement[] SwitchStatement.statements
           
 Statement[] Block.statements
           
 Statement IfStatement.thenStatement
           
 

Constructors in org.eclipse.jdt.internal.compiler.ast with parameters of type Statement
DoStatement(Expression condition, Statement action, int s, int e)
           
ForStatement(Statement[] initializations, Expression condition, Statement[] increments, Statement action, boolean neededScope, int s, int e)
           
ForStatement(Statement[] initializations, Expression condition, Statement[] increments, Statement action, boolean neededScope, int s, int e)
           
ForStatement(Statement[] initializations, Expression condition, Statement[] increments, Statement action, boolean neededScope, int s, int e)
           
IfStatement(Expression condition, Statement thenStatement, int sourceStart, int sourceEnd)
           
IfStatement(Expression condition, Statement thenStatement, Statement elseStatement, int sourceStart, int sourceEnd)
           
LabeledStatement(char[] label, Statement statement, long labelPosition, int sourceEnd)
          LabeledStatement constructor comment.
WhileStatement(Expression condition, Statement action, int s, int e)
           
 

Uses of Statement in org.eclipse.jdt.internal.compiler.parser
 

Fields in org.eclipse.jdt.internal.compiler.parser declared as Statement
 Statement RecoveredStatement.statement
           
 

Methods in org.eclipse.jdt.internal.compiler.parser that return Statement
 Statement RecoveredBlock.updatedStatement()
           
 Statement RecoveredLocalVariable.updatedStatement()
           
 Statement RecoveredStatement.updatedStatement()
           
 Statement RecoveredType.updatedStatement()
           
 Statement RecoveredBlock.updateStatement()
           
 

Methods in org.eclipse.jdt.internal.compiler.parser with parameters of type Statement
 RecoveredElement RecoveredBlock.add(Statement stmt, int bracketBalanceValue)
           
 RecoveredElement RecoveredLocalVariable.add(Statement stmt, int bracketBalanceValue)
           
 RecoveredElement RecoveredInitializer.add(Statement statement, int bracketBalanceValue)
           
 RecoveredElement RecoveredElement.add(Statement statement, int bracketBalanceValue)
           
 RecoveredElement RecoveredMethod.add(Statement statement, int bracketBalanceValue)
           
 RecoveredElement RecoveredField.add(Statement statement, int bracketBalanceValue)
           
 RecoveredElement RecoveredBlock.add(Statement stmt, int bracketBalanceValue, boolean delegatedByParent)
           
 

Constructors in org.eclipse.jdt.internal.compiler.parser with parameters of type Statement
RecoveredStatement(Statement statement, RecoveredElement parent, int bracketBalance)
           
 

Uses of Statement in org.eclipse.jdt.internal.compiler.problem
 

Methods in org.eclipse.jdt.internal.compiler.problem with parameters of type Statement
 void ProblemReporter.invalidConstructor(Statement statement, MethodBinding targetConstructor)
           
 void ProblemReporter.javadocInvalidConstructor(Statement statement, MethodBinding targetConstructor, int modifiers)
           
 void ProblemReporter.unreachableCode(Statement statement)