Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3a79ef234fc9ed2cd5d0a66a2d866c72383a1d1d (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
/*******************************************************************************
 * 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 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.ccvs.ui.operations;

import java.lang.reflect.InvocationTargetException;

import org.eclipse.team.internal.ccvs.core.CVSTag;
import org.eclipse.team.internal.ccvs.core.ICVSResource;

public interface ITagOperation {
	public abstract CVSTag getTag();
	public abstract void setTag(CVSTag tag);
	public abstract void run() throws InvocationTargetException, InterruptedException;
	public abstract ICVSResource[] getCVSResources();
	public abstract void moveTag();
	public abstract void recurse();
}

Back to the top