Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1e97dc2d008ca3e74c27562832cd60e2cae79282 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*******************************************************************************
 * Copyright (c) 2000, 2004 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);
}

Back to the top