Package org.eclipse.team.core.mapping
Interface ISynchronizationScopeParticipant
-
public interface ISynchronizationScopeParticipant
A scope participant is responsible for ensuring that the resources contained within anISynchronizationScope
that overlap with the participant's model provider stay up-to-date with the model elements (represented asResourceMapping
instances) contained in the scope.Clients may implement this interface.
- Since:
- 3.2
- See Also:
ResourceMapping
,ISynchronizationScopeManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dispose()
Callback from the scope manager when the scope is no longer needed.ResourceMapping[]
handleContextChange(ISynchronizationScope scope, IResource[] resources, IProject[] projects)
Callback that the manager makes to participants when the state of resources that are contained in the resource mapping context of the manager change.
-
-
-
Method Detail
-
handleContextChange
ResourceMapping[] handleContextChange(ISynchronizationScope scope, IResource[] resources, IProject[] projects)
Callback that the manager makes to participants when the state of resources that are contained in the resource mapping context of the manager change. This method will only be invoked when the context of the manager is aRemoteResourceMappingContext
and the state of one or more resources changes w.r.t. the context. It is the responsibility of the participant to react to local changes that affect the resources in the scope by callingISynchronizationScope.refresh(ResourceMapping[])
.- Parameters:
scope
- the scoperesources
- the changed resourcesprojects
- projects that were either added or removed- Returns:
- the resource mappings that need to be refreshed.
-
dispose
void dispose()
Callback from the scope manager when the scope is no longer needed. This si done to give participants a chance to remove a registeredIResourceChangeListener
or any other listeners.
-
-