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

Packages that use ReferenceContext
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   
 

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 LambdaExpression
           
 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.)
 java.lang.String FakedTrackingVariable.nameForReporting(ASTNode location, ReferenceContext referenceContext)
           
 

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.originalReferenceContext()
          Returns the nearest original reference context, starting from current scope.
 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(Scope parent, ReferenceContext context, boolean isStatic)
           
MethodScope(Scope parent, ReferenceContext context, boolean isStatic, int lastVisibleFieldID)
           
 

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 mandatoryError)
           
 void ProblemReporter.unmatchedBracket(int position, ReferenceContext context, CompilationResult compilationResult)