Uses of Interface
org.eclipse.jdt.internal.compiler.impl.ReferenceContext

Packages that use ReferenceContext
org.eclipse.jdt.internal.codeassist.complete   
org.eclipse.jdt.internal.compiler   
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.lookup   
org.eclipse.jdt.internal.compiler.parser   
org.eclipse.jdt.internal.compiler.problem   
org.eclipse.jdt.internal.eval   
 

Uses of ReferenceContext in org.eclipse.jdt.internal.codeassist.complete
 

Classes in org.eclipse.jdt.internal.codeassist.complete that implement ReferenceContext
 class CompletionOnAnnotationOfType
           
 class CompletionOnMethodName
           
 class CompletionOnMethodReturnType
           
 class CompletionOnMethodTypeParameter
           
 

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

Methods in org.eclipse.jdt.internal.compiler with parameters of type ReferenceContext
 void CompilationResult.record(CategorizedProblem newProblem, ReferenceContext referenceContext)
           
 void CompilationResult.record(CategorizedProblem newProblem, ReferenceContext referenceContext, boolean mandatoryError)
           
 

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

Classes in org.eclipse.jdt.internal.compiler.ast that implement ReferenceContext
 class AbstractMethodDeclaration
           
 class AnnotationMethodDeclaration
           
 class Clinit
           
 class CompilationUnitDeclaration
           
 class ConstructorDeclaration
           
 class MethodDeclaration
           
 class TypeDeclaration
           
 

Methods in org.eclipse.jdt.internal.compiler.ast with parameters of type ReferenceContext
 boolean Expression.forcedToBeRaw(ReferenceContext referenceContext)
          Returns true if the receiver is forced to be of raw type either to satisfy the contract imposed by a super type or because it *is* raw and the current type has no control over it (i.e the rawness originates from some other file.)
 

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

Fields in org.eclipse.jdt.internal.compiler.lookup declared as ReferenceContext
 ReferenceContext MethodScope.referenceContext
           
 

Methods in org.eclipse.jdt.internal.compiler.lookup that return ReferenceContext
 ReferenceContext Scope.enclosingReferenceContext()
          Returns the immediately enclosing reference context, starting from current scope parent.
 ReferenceContext Scope.referenceContext()
          Returns the nearest reference context, starting from current scope.
 

Constructors in org.eclipse.jdt.internal.compiler.lookup with parameters of type ReferenceContext
MethodScope(ClassScope parent, ReferenceContext context, boolean isStatic)
           
 

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

Fields in org.eclipse.jdt.internal.compiler.parser declared as ReferenceContext
 ReferenceContext Parser.referenceContext
           
 

Methods in org.eclipse.jdt.internal.compiler.parser with parameters of type ReferenceContext
 void Parser.parseStatements(ReferenceContext rc, int start, int end, TypeDeclaration[] types, CompilationUnitDeclaration unit)
           
 

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

Fields in org.eclipse.jdt.internal.compiler.problem declared as ReferenceContext
 ReferenceContext ProblemReporter.referenceContext
           
 

Methods in org.eclipse.jdt.internal.compiler.problem with parameters of type ReferenceContext
 void ProblemHandler.handle(int problemId, java.lang.String[] problemArguments, int elaborationId, java.lang.String[] messageArguments, int severity, int problemStartPosition, int problemEndPosition, ReferenceContext referenceContext, CompilationResult unitResult)
           
 void ProblemHandler.handle(int problemId, java.lang.String[] problemArguments, java.lang.String[] messageArguments, int problemStartPosition, int problemEndPosition, ReferenceContext referenceContext, CompilationResult unitResult)
          Standard problem handling API, the actual severity (warning/error/ignore) is deducted from the problem ID and the current compiler options.
 void ProblemHandler.record(CategorizedProblem problem, CompilationResult unitResult, ReferenceContext referenceContext, boolean optionalError)
           
 void ProblemReporter.unmatchedBracket(int position, ReferenceContext context, CompilationResult compilationResult)
           
 

Uses of ReferenceContext in org.eclipse.jdt.internal.eval
 

Classes in org.eclipse.jdt.internal.eval that implement ReferenceContext
 class CodeSnippetTypeDeclaration