Uses of Interface
org.eclipse.jdt.core.ISourceReference

Packages that use ISourceReference
org.eclipse.jdt.core The Java model is the set of classes that model the objects associated with creating, editing, and building a Java program. 
org.eclipse.jdt.internal.codeassist.impl   
org.eclipse.jdt.internal.core   
 

Uses of ISourceReference in org.eclipse.jdt.core
 

Subinterfaces of ISourceReference in org.eclipse.jdt.core
 interface IAnnotation
          Represents an annotation on a package declaration, a type, a method, a field or a local variable in a compilation unit or a class file.
 interface IClassFile
          Represents an entire binary type (single .class file).
 interface ICompilationUnit
          Represents an entire Java compilation unit (source file with one of the Java-like extensions).
 interface IField
          Represents a field declared in a type.
 interface IImportContainer
          Represents an import container is a child of a Java compilation unit that contains all (and only) the import declarations.
 interface IImportDeclaration
          Represents an import declaration in Java compilation unit.
 interface IInitializer
          Represents a stand-alone instance or class (static) initializer in a type.
 interface ILocalVariable
          Represents a local variable declared in a method or an initializer.
 interface IMember
          Common protocol for Java elements that can be members of types.
 interface IMethod
          Represents a method (or constructor) declared in a type.
 interface IPackageDeclaration
          Represents a package declaration in Java compilation unit.
 interface IType
          Represents either a source type in a compilation unit (either a top-level type, a member type, a local type or an anonymous type) or a binary type in a class file.
 interface ITypeParameter
          Represents a type parameter defined by a type or a method in a compilation unit or a class file.
 interface ITypeRoot
          Represents an entire Java type root (either an ICompilationUnit or an IClassFile).
 

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

Classes in org.eclipse.jdt.internal.codeassist.impl that implement ISourceReference
 class AssistAnnotation
           
 class AssistCompilationUnit
           
 class AssistImportContainer
           
 class AssistImportDeclaration
           
 class AssistInitializer
           
 class AssistPackageDeclaration
           
 class AssistSourceField
           
 class AssistSourceMethod
           
 class AssistSourceType
           
 class AssistTypeParameter
           
 

Uses of ISourceReference in org.eclipse.jdt.internal.core
 

Classes in org.eclipse.jdt.internal.core that implement ISourceReference
 class Annotation
           
 class BinaryMember
          Common functionality for Binary member handles.
 class BinaryType
          Parent is an IClassFile.
 class ClassFile
           
 class ClassFileWorkingCopy
          A working copy on an IClassFile.
 class CompilationUnit
           
 class ImportContainer
           
 class ImportDeclaration
          Handle for an import declaration.
 class Initializer
           
 class LocalVariable
           
 class Member
           
 class NamedMember
           
 class PackageDeclaration
           
 class ResolvedBinaryField
          Handle representing a binary field that is resolved.
 class ResolvedBinaryMethod
          Handle representing a binary method that is resolved.
 class ResolvedBinaryType
          Handle representing a binary type that is resolved.
 class ResolvedSourceField
          Handle representing a source field that is resolved.
 class ResolvedSourceMethod
          Handle representing a source method that is resolved.
 class ResolvedSourceType
          Handle representing a source type that is resolved.
 class SourceField
           
 class SourceMethod
           
 class SourceRefElement
          Abstract class for Java elements which implement ISourceReference.
 class SourceType
          Handle for a source type.
 class TypeParameter