blob: 2e1bd46dfe5a7843356760fa86c4da00f2ff0576 [file] [log] [blame]
/*******************************************************************************
* 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.ccvs.ui.operations;
import org.eclipse.team.internal.ccvs.core.CVSException;
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 CVSException, InterruptedException;
public abstract ICVSResource[] getCVSResources();
public abstract void moveTag();
public abstract void recurse();
}