public interface IClassSpace
Modifier and Type | Method and Description |
---|---|
GenericClassContainer |
findContainerNamed(java.lang.String containerName)
Returns the class container with the given name or null, if it cannot
be found.
|
java.util.List<GenericClassContainer> |
getClassContainers()
Returns all class containers of this class space.
|
ClassInformation |
getClassInfo(java.lang.String className)
Returns the
ClassInformation object corresponding to the given className. |
GenericClassContainer |
getNotFoundClassesContainer()
Returns the container that holds all classes that cannot be found in any
other container.
|
ClassInformation getClassInfo(java.lang.String className)
ClassInformation
object corresponding to the given className.
The result might be a newly created instance of ClassInformation or an
already in the workset existing object.
Use method ClassInformation.isComplete()
on it to check if it is already
loaded from its file.className
- The fully qualified class name (must not be null)ClassInformation.isComplete()
java.util.List<GenericClassContainer> getClassContainers()
GenericClassContainer findContainerNamed(java.lang.String containerName)
containerName
- The name of the container to look up (must not be null)GenericClassContainer getNotFoundClassesContainer()