Package org.eclipse.team.ui.synchronize
Interface ISynchronizeParticipantListener
-
public interface ISynchronizeParticipantListener
A synchronize participant listener is notified when participants are added or removed from the synchronize manager.Clients may implement this interface.
- Since:
- 3.0
- See Also:
ISynchronizeManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
participantsAdded(ISynchronizeParticipant[] participants)
Notification the given participants have been added to the synchronize manager.void
participantsRemoved(ISynchronizeParticipant[] participants)
Notification the given participants have been removed from the synchronize manager.
-
-
-
Method Detail
-
participantsAdded
void participantsAdded(ISynchronizeParticipant[] participants)
Notification the given participants have been added to the synchronize manager.- Parameters:
participants
- added participants
-
participantsRemoved
void participantsRemoved(ISynchronizeParticipant[] participants)
Notification the given participants have been removed from the synchronize manager.- Parameters:
participants
- removed participants
-
-