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

Packages that use NameReference
org.eclipse.jdt.internal.codeassist.complete   
org.eclipse.jdt.internal.codeassist.impl   
org.eclipse.jdt.internal.codeassist.select   
org.eclipse.jdt.internal.compiler   
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.problem   
org.eclipse.jdt.internal.eval   
org.jmlspecs.jml4.ast   
 

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

Subclasses of NameReference in org.eclipse.jdt.internal.codeassist.complete
 class CompletionOnJavadocParamNameReference
           
 class CompletionOnJavadocTag
           
 class CompletionOnKeyword3
           
 class CompletionOnQualifiedNameReference
           
 class CompletionOnSingleNameReference
           
 

Methods in org.eclipse.jdt.internal.codeassist.complete that return NameReference
 NameReference CompletionParser.createQualifiedAssistNameReference(char[][] previousIdentifiers, char[] assistName, long[] positions)
           
 NameReference CompletionParser.createSingleAssistNameReference(char[] assistName, long position)
           
 

Uses of NameReference in org.eclipse.jdt.internal.codeassist.impl
 

Methods in org.eclipse.jdt.internal.codeassist.impl that return NameReference
abstract  NameReference AssistParser.createQualifiedAssistNameReference(char[][] previousIdentifiers, char[] assistName, long[] positions)
           
abstract  NameReference AssistParser.createSingleAssistNameReference(char[] assistName, long position)
           
 

Uses of NameReference in org.eclipse.jdt.internal.codeassist.select
 

Subclasses of NameReference in org.eclipse.jdt.internal.codeassist.select
 class SelectionOnQualifiedNameReference
           
 class SelectionOnSingleNameReference
           
 

Methods in org.eclipse.jdt.internal.codeassist.select that return NameReference
 NameReference SelectionParser.createQualifiedAssistNameReference(char[][] previousIdentifiers, char[] assistName, long[] positions)
           
 NameReference SelectionParser.createSingleAssistNameReference(char[] assistName, long position)
           
 

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

Methods in org.eclipse.jdt.internal.compiler that return NameReference
 NameReference SourceElementParser.getUnspecifiedReference()
           
 NameReference SourceElementParser.getUnspecifiedReferenceOptimized()
           
 

Methods in org.eclipse.jdt.internal.compiler with parameters of type NameReference
 void SourceElementParser.addUnknownRef(NameReference nameRef)
           
 

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

Subclasses of NameReference in org.eclipse.jdt.internal.compiler.ast
 class JavadocSingleNameReference
           
 class QualifiedNameReference
           
 class SingleNameReference
           
 

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

Methods in org.eclipse.jdt.internal.compiler.problem with parameters of type NameReference
 void ProblemReporter.duplicateTargetInTargetAnnotation(TypeBinding annotationType, NameReference reference)
           
 void ProblemReporter.invalidField(NameReference nameRef, FieldBinding field)
           
 void ProblemReporter.unqualifiedFieldAccess(NameReference reference, FieldBinding field)
           
 void ProblemReporter.unresolvableReference(NameReference nameRef, Binding binding)
           
 

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

Subclasses of NameReference in org.eclipse.jdt.internal.eval
 class CodeSnippetQualifiedNameReference
           
 class CodeSnippetSingleNameReference
          A single name reference inside a code snippet can denote a field of a remote receiver object (that is, the receiver of the context in the stack frame).
 

Uses of NameReference in org.jmlspecs.jml4.ast
 

Subclasses of NameReference in org.jmlspecs.jml4.ast
 class JmlQualifiedNameReference
           
 class JmlSingleNameReference
           
 

Constructors in org.jmlspecs.jml4.ast with parameters of type NameReference
JmlNameDotStarStoreRef(NameReference nameRef)