Interface IResourceSetHook

  • All Known Implementing Classes:
    AbstractResourceSetHooks

    public interface IResourceSetHook
    Interface used to hook some behavior into the ResourceSet used by EMF Compare when using logical model.
    Since:
    3.2
    • Method Detail

      • isHookFor

        boolean isHookFor​(Collection<? extends URI> uris)
        Returns true if this hook should be used.
        Parameters:
        uris - list of URIs about to be loaded in the ResourceSet.
        Returns:
        true if this hook should be used, false otherwise.
      • preLoadingHook

        void preLoadingHook​(ResourceSet resourceSet,
                            Collection<? extends URI> uris)
        This will be called before the final resource set is populated, in unspecified order. Resource set hooks can load resource in this resource set and thus an individual hook is not guaranteed to be provided an empty resource set here.
        Parameters:
        resourceSet - about to be filled.
        uris - URIs that the resource set has been requested to load. The Collection of URI is not modifiable.
      • postLoadingHook

        void postLoadingHook​(ResourceSet resourceSet,
                             Collection<? extends URI> uris)
        This will be called after the resource set is populated in an unspecified order.
        Parameters:
        resourceSet - that has been filled with Resources.
        uris - URIs that the resource set has been requested to load.The Collection of URI is not modifiable.
      • onDispose

        void onDispose​(Iterable<Resource> resources)
        This will be called when the resource set is disposed (if it is).

        By default, EMF Compare will not unload any resource. Still some resources might need to be unloaded. This method could be a good way to do it. Hooks are called in unspecified order, so resources may already have been unloaded by other hooks when yours is called.

        Parameters:
        resources - List of Resources currently in the resource set.
        See Also:
        DisposableResourceSet