public interface IResourceDependencyProvider
| Modifier and Type | Method and Description | 
|---|---|
| Iterable<URI> | getDependenciesOf(org.eclipse.core.resources.IFile file)Provides the dependencies of the given file. | 
| Iterable<URI> | getDependenciesOf(org.eclipse.core.resources.IFile file,
                 Set<URI> bounds)Provides the dependencies of the given file. | 
| boolean | hasChild(URI parent,
        URI candidate)Indicates whether the given parent has the given URI as child according to the graph of dependencies. | 
Iterable<URI> getDependenciesOf(org.eclipse.core.resources.IFile file)
file - The fileURIs.Iterable<URI> getDependenciesOf(org.eclipse.core.resources.IFile file, Set<URI> bounds)
file - The filebounds - The bounds to exclude from the research, in cas the compared resources are part of the same
            logical model.URIs.boolean hasChild(URI parent, URI candidate)
parent - The parent URIcandidate - The candidate childtrue if and only if the candidate URI is known as a child of the parent URI in the
         graph of dependencies.
Copyright (c) 2006, 2015 Obeo and others. All rights reserved.