Package org.eclipse.core.resources
Interface IDynamicReferenceProvider
-
public interface IDynamicReferenceProvider
Implementations of this interface are capable of determining a set of projects which a given project depends upon. Unless otherwise stated, all arguments and return values are non-null.- Since:
- 3.12
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IProject>
getDependentProjects(IBuildConfiguration buildConfiguration)
Returns the set of projects which the given project depends upon.
-
-
-
Method Detail
-
getDependentProjects
List<IProject> getDependentProjects(IBuildConfiguration buildConfiguration) throws CoreException
Returns the set of projects which the given project depends upon. If the return value of a previous call to this method ever changes, it will fire an event to the listeners. This method my be invoked from any thread and may be invoked in parallel by multiple threads.- Parameters:
buildConfiguration
- the build configuration being queried.- Returns:
- the set of projects which the given projects depends upon.
- Throws:
CoreException
-
-