Klasse TypeHierarchy
- Alle implementierten Schnittstellen:
IElementChangedListener,ITypeHierarchy
- Bekannte direkte Unterklassen:
RegionBasedTypeHierarchy
- Siehe auch:
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungprotected ChangeCollectorprotected ArrayList<ITypeHierarchyChangedListener>Change listeners - null if no one is listening.protected booleanWhether this hierarchy should contains subtypes.static booleanprotected ITypeThe type the hierarchy was specifically computed for, possibly null.booleanprotected static final IType[]protected RegionA region describing the packages considered by this hierarchy.protected org.eclipse.core.runtime.SubMonitorThe progress monitor to report work completed too.protected IJavaProjectThe Java Project in which the hierarchy is being built - this provides the context for determining a classpath and namelookup rules.protected RegionA region describing the projects considered by this hierarchy.protected TypeVectorprotected Map<IType,TypeVector> protected ICompilationUnit[] -
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungCreates an empty TypeHierarchyTypeHierarchy(IType type, ICompilationUnit[] workingCopies, IJavaProject project, boolean computeSubtypes) Creates a TypeHierarchy on the given type.TypeHierarchy(IType type, ICompilationUnit[] workingCopies, IJavaSearchScope scope, boolean computeSubtypes) Creates a TypeHierarchy on the given type. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungprotected voidaddInterface(IType type) Adds the type to the collection of interfaces.protected voidaddRootClass(IType type) Adds the type to the collection of root classes if the classes is not already present in the collection.protected voidaddSubtype(IType type, IType subtype) Adds the given subtype to the type.voidAdds the given listener for changes to this type hierarchy.voidcacheFlags(IType type, int flags) cacheFlags.protected voidcacheSuperclass(IType type, IType superclass) Caches the handle of the superclass for the specified type.protected voidcacheSuperInterfaces(IType type, IType[] superinterfaces) Caches all of the superinterfaces that are specified for the type.protected voidChecks with the progress monitor to see whether the creation of the type hierarchy should be canceled.protected voidcompute()Compute this type hierarchy.booleanReturns whether the given type is part of this hierarchy.voidDetermines if the change affects this hierarchy, and fires change notification if required.booleanexists()Returns whether the type and project this hierarchy was created on exist.voidNotifies listeners that this hierarchy has changed and needs refreshing.IType[]Returns all classes in this type hierarchy's graph, in no particular order.IType[]Returns all interfaces in this type hierarchy's graph, in no particular order.IType[]getAllSubtypes(IType type) Returns all resolved subtypes (direct and indirect) of the given type, in no particular order, limited to the types in this type hierarchy's graph.IType[]getAllSuperclasses(IType type) Returns all resolved superclasses of the given class, in bottom-up order.IType[]getAllSuperInterfaces(IType type) Returns all resolved superinterfaces (direct and indirect) of the given type.IType[]getAllSupertypes(IType type) Returns all resolved supertypes of the given type, in bottom-up order.IType[]Returns all types in this type hierarchy's graph, in no particular order.intgetCachedFlags(IType type) Return the flags associated with the given type (would be equivalent toIMember.getFlags()), or-1if this information wasn't cached on the hierarchy during its computation.IType[]getExtendingInterfaces(IType type) Returns all interfaces resolved to extend the given interface, in no particular order, limited to the interfaces in this hierarchy's graph.IType[]getImplementingClasses(IType type) Returns all classes resolved to implement the given interface, in no particular order, limited to the classes in this type hierarchy's graph.IType[]Returns all classes in the graph which have no resolved superclass, in no particular order.IType[]Returns all interfaces in the graph which have no resolved superinterfaces, in no particular order.IType[]getSubclasses(IType type) Returns the direct resolved subclasses of the given class, in no particular order, limited to the classes in this type hierarchy's graph.IType[]getSubtypes(IType type) Returns the direct resolved subtypes of the given type, in no particular order, limited to the types in this type hierarchy's graph.getSuperclass(IType type) Returns the resolved superclass of the given class, ornullif the given class has no superclass, the superclass could not be resolved, or if the given type is an interface.IType[]getSuperInterfaces(IType type) Returns the direct resolved interfaces that the given type implements or extends, in no particular order, limited to the interfaces in this type hierarchy's graph.IType[]getSupertypes(IType type) Returns the resolved supertypes of the given type, in no particular order, limited to the types in this type hierarchy's graph.getType()Returns the type this hierarchy was computed for.protected IType[]growAndAddToArray(IType[] array, IType addition) Adds the new element to a new array that contains all of the elements of the old array.protected IType[]growAndAddToArray(IType[] array, IType[] additions) Adds the new elements to a new array that contains all of the elements of the old array.booleanprotected voidinitialize(int size) Initializes this hierarchy's internal tables with the given size.protected voidInitializes the file, package and project regionsbooleanisAffected(IJavaElementDelta delta, int eventType) Returns true if the given delta could change this type hierarchyprotected booleanisAffectedByOpenable(IJavaElementDelta delta, IJavaElement element, int eventType) Returns true if the given type delta (a compilation unit delta or a class file delta) could affect this type hierarchy.Returns the java project this hierarchy was created in.static ITypeHierarchyload(IType type, InputStream input, WorkingCopyOwner owner) protected booleanReturnstrueif an equivalent package fragment is included in the package region.protected static byte[]readUntil(InputStream input, byte separator) protected static byte[]readUntil(InputStream input, byte separator, int offset) voidrefresh(org.eclipse.core.runtime.IProgressMonitor monitor) Re-computes the type hierarchy reporting progress.voidRemoves the given listener from this type hierarchy.voidstore(OutputStream output, org.eclipse.core.runtime.IProgressMonitor monitor) Stores the type hierarchy in an output stream.toString()protected voidworked(int work)
-
Felddetails
-
DEBUG
public static boolean DEBUG -
project
The Java Project in which the hierarchy is being built - this provides the context for determining a classpath and namelookup rules. Possibly null. -
focusType
The type the hierarchy was specifically computed for, possibly null. -
workingCopies
-
classToSuperclass
-
typeToSuperInterfaces
-
typeToSubtypes
-
typeFlags
-
rootClasses
-
interfaces
-
missingTypes
-
NO_TYPE
-
progressMonitor
protected org.eclipse.core.runtime.SubMonitor progressMonitorThe progress monitor to report work completed too. -
changeListeners
Change listeners - null if no one is listening. -
files
-
packageRegion
A region describing the packages considered by this hierarchy. Null if not activated. -
projectRegion
A region describing the projects considered by this hierarchy. Null if not activated. -
computeSubtypes
protected boolean computeSubtypesWhether this hierarchy should contains subtypes. -
needsRefresh
public boolean needsRefresh -
changeCollector
-
-
Konstruktordetails
-
TypeHierarchy
public TypeHierarchy()Creates an empty TypeHierarchy -
TypeHierarchy
public TypeHierarchy(IType type, ICompilationUnit[] workingCopies, IJavaProject project, boolean computeSubtypes) Creates a TypeHierarchy on the given type. -
TypeHierarchy
public TypeHierarchy(IType type, ICompilationUnit[] workingCopies, IJavaSearchScope scope, boolean computeSubtypes) Creates a TypeHierarchy on the given type.
-
-
Methodendetails
-
initializeRegions
protected void initializeRegions()Initializes the file, package and project regions -
addInterface
Adds the type to the collection of interfaces. -
addRootClass
Adds the type to the collection of root classes if the classes is not already present in the collection. -
addSubtype
Adds the given subtype to the type. -
addTypeHierarchyChangedListener
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyAdds the given listener for changes to this type hierarchy. Listeners are notified when this type hierarchy changes and needs to be refreshed. Has no effect if an identical listener is already registered.- Angegeben von:
addTypeHierarchyChangedListenerin SchnittstelleITypeHierarchy- Parameter:
listener- the listener- Siehe auch:
-
cacheFlags
cacheFlags. -
cacheSuperclass
Caches the handle of the superclass for the specified type. As a side effect cache this type as a subtype of the superclass. -
cacheSuperInterfaces
Caches all of the superinterfaces that are specified for the type. -
checkCanceled
protected void checkCanceled()Checks with the progress monitor to see whether the creation of the type hierarchy should be canceled. Should be regularly called so that the user can cancel.- Löst aus:
org.eclipse.core.runtime.OperationCanceledException- if cancelling the operation has been requested- Siehe auch:
-
IProgressMonitor.isCanceled()
-
compute
Compute this type hierarchy.- Löst aus:
JavaModelExceptionorg.eclipse.core.runtime.CoreException
-
contains
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns whether the given type is part of this hierarchy.- Angegeben von:
containsin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- true if the given type is part of this hierarchy, false otherwise
- Siehe auch:
-
elementChanged
Determines if the change affects this hierarchy, and fires change notification if required.- Angegeben von:
elementChangedin SchnittstelleIElementChangedListener- Parameter:
event- the change event
-
exists
public boolean exists()Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns whether the type and project this hierarchy was created on exist.- Angegeben von:
existsin SchnittstelleITypeHierarchy- Gibt zurück:
- true if the type and project this hierarchy was created on exist, false otherwise
- Siehe auch:
-
fireChange
public void fireChange()Notifies listeners that this hierarchy has changed and needs refreshing. Note that listeners can be removed as we iterate through the list. -
getAllClasses
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all classes in this type hierarchy's graph, in no particular order. Any classes in the creation region which were not resolved to have any subtypes or supertypes are not included in the result.- Angegeben von:
getAllClassesin SchnittstelleITypeHierarchy- Gibt zurück:
- all classes in this type hierarchy's graph
- Siehe auch:
-
getAllInterfaces
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all interfaces in this type hierarchy's graph, in no particular order. Any interfaces in the creation region which were not resolved to have any subtypes or supertypes are not included in the result.- Angegeben von:
getAllInterfacesin SchnittstelleITypeHierarchy- Gibt zurück:
- all interfaces in this type hierarchy's graph
- Siehe auch:
-
getAllSubtypes
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all resolved subtypes (direct and indirect) of the given type, in no particular order, limited to the types in this type hierarchy's graph. An empty array is returned if there are no resolved subtypes for the given type.- Angegeben von:
getAllSubtypesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- all resolved subtypes (direct and indirect) of the given type
- Siehe auch:
-
getAllSuperclasses
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all resolved superclasses of the given class, in bottom-up order. An empty array is returned if there are no resolved superclasses for the given class.NOTE: once a type hierarchy has been created, it is more efficient to query the hierarchy for superclasses than to query a class recursively up the superclass chain. Querying an element performs a dynamic resolution, whereas the hierarchy returns a pre-computed result.
- Angegeben von:
getAllSuperclassesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- all resolved superclasses of the given class, in bottom-up order, an empty array if none.
- Siehe auch:
-
getAllSuperInterfaces
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all resolved superinterfaces (direct and indirect) of the given type. If the given type is a class, this includes all superinterfaces of all superclasses. An empty array is returned if there are no resolved superinterfaces for the given type.NOTE: once a type hierarchy has been created, it is more efficient to query the hierarchy for superinterfaces than to query a type recursively. Querying an element performs a dynamic resolution, whereas the hierarchy returns a pre-computed result.
- Angegeben von:
getAllSuperInterfacesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- all resolved superinterfaces (direct and indirect) of the given type, an empty array if none
- Siehe auch:
-
getAllSupertypes
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all resolved supertypes of the given type, in bottom-up order. An empty array is returned if there are no resolved supertypes for the given type.Note that
java.lang.Objectis NOT considered to be a supertype of any interface type.NOTE: once a type hierarchy has been created, it is more efficient to query the hierarchy for supertypes than to query a type recursively up the supertype chain. Querying an element performs a dynamic resolution, whereas the hierarchy returns a pre-computed result.
- Angegeben von:
getAllSupertypesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- all resolved supertypes of the given class, in bottom-up order, an empty array if none
- Siehe auch:
-
getAllTypes
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all types in this type hierarchy's graph, in no particular order. Any types in the creation region which were not resolved to have any subtypes or supertypes are not included in the result.- Angegeben von:
getAllTypesin SchnittstelleITypeHierarchy- Gibt zurück:
- all types in this type hierarchy's graph
- Siehe auch:
-
getCachedFlags
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturn the flags associated with the given type (would be equivalent toIMember.getFlags()), or-1if this information wasn't cached on the hierarchy during its computation.- Angegeben von:
getCachedFlagsin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- the modifier flags for this member
- Siehe auch:
-
getExtendingInterfaces
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all interfaces resolved to extend the given interface, in no particular order, limited to the interfaces in this hierarchy's graph. Returns an empty collection if the given type is a class, or if no interfaces were resolved to extend the given interface.- Angegeben von:
getExtendingInterfacesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- all interfaces resolved to extend the given interface limited to the interfaces in this hierarchy's graph, an empty array if none.
- Siehe auch:
-
getImplementingClasses
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all classes resolved to implement the given interface, in no particular order, limited to the classes in this type hierarchy's graph. Returns an empty collection if the given type is a class, or if no classes were resolved to implement the given interface.- Angegeben von:
getImplementingClassesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- all classes resolved to implement the given interface limited to the classes in this type hierarchy's graph, an empty array if none
- Siehe auch:
-
getRootClasses
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all classes in the graph which have no resolved superclass, in no particular order.- Angegeben von:
getRootClassesin SchnittstelleITypeHierarchy- Gibt zurück:
- all classes in the graph which have no resolved superclass
- Siehe auch:
-
getRootInterfaces
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns all interfaces in the graph which have no resolved superinterfaces, in no particular order.- Angegeben von:
getRootInterfacesin SchnittstelleITypeHierarchy- Gibt zurück:
- all interfaces in the graph which have no resolved superinterfaces
- Siehe auch:
-
getSubclasses
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns the direct resolved subclasses of the given class, in no particular order, limited to the classes in this type hierarchy's graph. Returns an empty collection if the given type is an interface, or if no classes were resolved to be subclasses of the given class.- Angegeben von:
getSubclassesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- the direct resolved subclasses of the given class limited to the classes in this type hierarchy's graph, an empty collection if none.
- Siehe auch:
-
getSubtypes
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns the direct resolved subtypes of the given type, in no particular order, limited to the types in this type hierarchy's graph. If the type is a class, this returns the resolved subclasses. If the type is an interface, this returns both the classes which implement the interface and the interfaces which extend it.- Angegeben von:
getSubtypesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- the direct resolved subtypes of the given type limited to the types in this type hierarchy's graph
- Siehe auch:
-
getSuperclass
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns the resolved superclass of the given class, ornullif the given class has no superclass, the superclass could not be resolved, or if the given type is an interface.- Angegeben von:
getSuperclassin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- the resolved superclass of the given class,
or
nullif the given class has no superclass, the superclass could not be resolved, or if the given type is an interface - Siehe auch:
-
getSuperInterfaces
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns the direct resolved interfaces that the given type implements or extends, in no particular order, limited to the interfaces in this type hierarchy's graph. For classes, this gives the interfaces that the class implements. For interfaces, this gives the interfaces that the interface extends.- Angegeben von:
getSuperInterfacesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- the direct resolved interfaces that the given type implements or extends limited to the interfaces in this type hierarchy's graph
- Siehe auch:
-
getSupertypes
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns the resolved supertypes of the given type, in no particular order, limited to the types in this type hierarchy's graph. For classes, this returns its superclass and the interfaces that the class implements. For interfaces, this returns the interfaces that the interface extends. As a consequencejava.lang.Objectis NOT considered to be a supertype of any interface type.- Angegeben von:
getSupertypesin SchnittstelleITypeHierarchy- Parameter:
type- the given type- Gibt zurück:
- the resolved supertypes of the given type limited to the types in this type hierarchy's graph
- Siehe auch:
-
getType
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyReturns the type this hierarchy was computed for. Returnsnullif this hierarchy was computed for a region.- Angegeben von:
getTypein SchnittstelleITypeHierarchy- Gibt zurück:
- the type this hierarchy was computed for
- Siehe auch:
-
growAndAddToArray
Adds the new elements to a new array that contains all of the elements of the old array. Returns the new array. -
growAndAddToArray
Adds the new element to a new array that contains all of the elements of the old array. Returns the new array. -
hasFineGrainChanges
public boolean hasFineGrainChanges() -
initialize
protected void initialize(int size) Initializes this hierarchy's internal tables with the given size. -
isAffected
Returns true if the given delta could change this type hierarchy- Parameter:
eventType- TODO
-
isAffectedByOpenable
protected boolean isAffectedByOpenable(IJavaElementDelta delta, IJavaElement element, int eventType) Returns true if the given type delta (a compilation unit delta or a class file delta) could affect this type hierarchy.- Parameter:
eventType- TODO
-
javaProject
Returns the java project this hierarchy was created in. -
readUntil
protected static byte[] readUntil(InputStream input, byte separator) throws JavaModelException, IOException - Löst aus:
JavaModelExceptionIOException
-
readUntil
protected static byte[] readUntil(InputStream input, byte separator, int offset) throws IOException, JavaModelException - Löst aus:
IOExceptionJavaModelException
-
load
public static ITypeHierarchy load(IType type, InputStream input, WorkingCopyOwner owner) throws JavaModelException - Löst aus:
JavaModelException
-
packageRegionContainsSamePackageFragment
Returnstrueif an equivalent package fragment is included in the package region. Package fragments are equivalent if they both have the same name. -
refresh
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyRe-computes the type hierarchy reporting progress.- Angegeben von:
refreshin SchnittstelleITypeHierarchy- Parameter:
monitor- the given progress monitor- Löst aus:
JavaModelException- if unable to refresh the hierarchy- Siehe auch:
-
removeTypeHierarchyChangedListener
Beschreibung aus Schnittstelle kopiert:ITypeHierarchyRemoves the given listener from this type hierarchy. Has no effect if an identical listener is not registered.- Angegeben von:
removeTypeHierarchyChangedListenerin SchnittstelleITypeHierarchy- Parameter:
listener- the listener- Siehe auch:
-
store
public void store(OutputStream output, org.eclipse.core.runtime.IProgressMonitor monitor) throws JavaModelException Beschreibung aus Schnittstelle kopiert:ITypeHierarchyStores the type hierarchy in an output stream. This stored hierarchy can be load by IType#loadTypeHierachy(IJavaProject, InputStream, IProgressMonitor). Listeners of this hierarchy are not stored. Only hierarchies created by the following methods can be store:- IType#newSupertypeHierarchy(IProgressMonitor)
- IType#newTypeHierarchy(IJavaProject, IProgressMonitor)
- IType#newTypeHierarchy(IProgressMonitor)
- Angegeben von:
storein SchnittstelleITypeHierarchy- Parameter:
output- output stream where the hierarchy will be storedmonitor- the given progress monitor- Löst aus:
JavaModelException- if unable to store the hierarchy in the ouput stream- Siehe auch:
-
toString
-
worked
protected void worked(int work) - Siehe auch:
-
IProgressMonitor
-