Interface ISourceContainer
- All Superinterfaces:
IAdaptable
- All Known Implementing Classes:
AbstractSourceContainer
,ArchiveSourceContainer
,CompositeSourceContainer
,ContainerSourceContainer
,DefaultSourceContainer
,DirectorySourceContainer
,ExternalArchiveSourceContainer
,FolderSourceContainer
,ProjectSourceContainer
,WorkingSetSourceContainer
,WorkspaceSourceContainer
A source container is a container of source code. A source container is
capable of searching for source elements by name. For example, a source
container may be a project or a directory capable of searching for files
by name. A source container may be a composite container - i.e. contain
other source containers.
When a source container is created and added to a source director, the
source container's dispose()
method is called when the
source director is disposed. Clients creating source containers for other
purposes must dispose of containers themselves.
Clients may implement this interface.
- Since:
- 3.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Disposes this source container.Object[]
findSourceElements
(String name) Returns a collection of source elements in this container corresponding to the given name.getName()
The name of this source container that can be used for presentation purposes.Returns the source containers this container is composed of.getType()
Returns this container's type.void
init
(ISourceLookupDirector director) Notification this source container has been added to the given source lookup director.boolean
Returns whether this container is a composite container.Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
-
Method Details
-
init
Notification this source container has been added to the given source lookup director.- Parameters:
director
- the director this container has been added to
-
findSourceElements
Returns a collection of source elements in this container corresponding to the given name. Returns an empty collection if no source elements are found. This source container's source lookup director specifies if duplicate source elements should be searched for, viaisFindDuplicates()
. Whenfalse
the returned collection should contain at most one source element. If this is a composite container, the containers contained by this container are also searched.The format of the given name is implementation specific but generally conforms to the format of a file name. If a source container does not recognize the name format provided, an empty collection should be returned. A source container may or may not require names to be fully qualified (i.e. be qualified with directory names).
- Parameters:
name
- the name of the source element to search for- Returns:
- a collection of source elements corresponding to the given name
- Throws:
CoreException
- if an exception occurs while searching for source elements
-
getName
String getName()The name of this source container that can be used for presentation purposes. For example, the name of a project.- Returns:
- the name of this source container
-
getSourceContainers
Returns the source containers this container is composed of. An empty collection is returned if this container is not a composite container. For example, a workspace source container may be composed of project source containers.- Returns:
- the source containers this container is composed of, possibly an empty collection
- Throws:
CoreException
- if unable to retrieve source containers
-
isComposite
boolean isComposite()Returns whether this container is a composite container. A composite container is composed of other source containers. For example, a workspace source container may be composed of project source containers.- Returns:
- whether this container is a composite container
-
getType
ISourceContainerType getType()Returns this container's type.- Returns:
- this container's type
-
dispose
void dispose()Disposes this source container. This method is called when the source director associated with this source container is disposed.
-