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

Packages that use CaseStatement
org.eclipse.jdt.internal.compiler   
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.lookup   
org.eclipse.jdt.internal.compiler.problem   
 

Uses of CaseStatement in org.eclipse.jdt.internal.compiler
 

Methods in org.eclipse.jdt.internal.compiler with parameters of type CaseStatement
 void ASTVisitor.endVisit(CaseStatement caseStatement, BlockScope scope)
           
 boolean ASTVisitor.visit(CaseStatement caseStatement, BlockScope scope)
           
 

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

Fields in org.eclipse.jdt.internal.compiler.ast declared as CaseStatement
 CaseStatement[] SwitchStatement.cases
           
 CaseStatement SwitchStatement.defaultCase
           
 

Uses of CaseStatement in org.eclipse.jdt.internal.compiler.lookup
 

Fields in org.eclipse.jdt.internal.compiler.lookup declared as CaseStatement
 CaseStatement BlockScope.enclosingCase
           
 CaseStatement LocalTypeBinding.enclosingCase
           
 

Methods in org.eclipse.jdt.internal.compiler.lookup that return CaseStatement
 CaseStatement Scope.innermostSwitchCase()
          Returns the immediately enclosing switchCase statement (carried by closest blockScope),
 

Methods in org.eclipse.jdt.internal.compiler.lookup with parameters of type CaseStatement
 boolean Scope.isInsideCase(CaseStatement caseStatement)
          Returns true if the scope or one of its parent is associated to a given caseStatement, denoting being part of a given switch case statement.
 

Constructors in org.eclipse.jdt.internal.compiler.lookup with parameters of type CaseStatement
LocalTypeBinding(ClassScope scope, SourceTypeBinding enclosingType, CaseStatement switchCase)
           
 

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

Methods in org.eclipse.jdt.internal.compiler.problem with parameters of type CaseStatement
 void ProblemReporter.duplicateCase(CaseStatement caseStatement)
           
 void ProblemReporter.possibleFallThroughCase(CaseStatement caseStatement)