blob: 8b903670eba8ffd0e5d19f0c317194ebd1c983fe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.ui.synchronize;
/**
* A synchronize participant listener is notified when participants are added or
* removed from the synchronize manager.
* <p>
* Clients may implement this interface.
* </p>
* @see ISynchronizeManager
* @since 3.0
*/
public interface ISynchronizeParticipantListener {
/**
* Notification the given participants have been added to the synchronize
* manager.
*
* @param participants added participants
*/
public void participantsAdded(ISynchronizeParticipant[] participants);
/**
* Notification the given participants have been removed from the
* synchronize manager.
*
* @param participants removed participants
*/
public void participantsRemoved(ISynchronizeParticipant[] participants);
}