Skip to main content
summaryrefslogtreecommitdiffstats
blob: e91864fc45f513dad946561fc78332d8d8c7d4de (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
39
40
41
/*******************************************************************************
 * Copyright (c) 2000, 2003 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.internal.ui.synchronize.actions;

import org.eclipse.jface.action.Action;
import org.eclipse.team.internal.ui.Policy;
import org.eclipse.team.internal.ui.Utils;
import org.eclipse.team.ui.TeamUI;
import org.eclipse.team.ui.synchronize.ISynchronizeParticipantReference;

/**
 * Action to remove the given participant from the synchronize manager.
 * @since 3.0 
 */
public class RemoveSynchronizeParticipantAction extends Action {
	private ISynchronizeParticipantReference ref;

	/**
	 * Creates the action to remove the participant from the synchronize
	 * manager.
	 * @param participant the participant to remove from the synchronize
	 * manager.
	 */
	public RemoveSynchronizeParticipantAction(String id, String secondaryId) {
		this.ref = TeamUI.getSynchronizeManager().get(id, secondaryId);
		Utils.initAction(this, "action.removePage.", Policy.getBundle()); //$NON-NLS-1$
		setEnabled(ref != null);
	}
	
	public void run() {
		TeamUI.getSynchronizeManager().removeSynchronizeParticipants(	new ISynchronizeParticipantReference[] {ref});
	}
}

Back to the top