Class DefaultImplicitDependencies
- java.lang.Object
-
- org.eclipse.emf.compare.ide.ui.internal.logical.resolver.DefaultImplicitDependencies
-
- All Implemented Interfaces:
IImplicitDependencies
public class DefaultImplicitDependencies extends Object implements IImplicitDependencies
Default implementation ofIImplicitDependencies
, which uses the extensions collected by the registry of the modelDependencyProvider extension point.
-
-
Constructor Summary
Constructors Constructor Description DefaultImplicitDependencies()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<URI>
of(URI uri, URIConverter uriConverter)
Provides a set continaing the given URI plus its implicit dependencies (those that cannot be found by instpecting the cross-references of the resource represented by the given URI).
-
-
-
Method Detail
-
of
public Set<URI> of(URI uri, URIConverter uriConverter)
Description copied from interface:IImplicitDependencies
Provides a set continaing the given URI plus its implicit dependencies (those that cannot be found by instpecting the cross-references of the resource represented by the given URI).- Specified by:
of
in interfaceIImplicitDependencies
- Parameters:
uri
- URI of a model resource for which we want the set of related dependenciesuriConverter
- URI Converter to use- Returns:
- Must return a Set that's never null nor empty, that contains at least the given uri, plus its implicit dependencies if it has any..
-
-