blob: 65ab2067000c67cba8d4d2e7859ae7692815733e [file] [log] [blame]
/*******************************************************************************
* 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.internal.ccvs.ui.repo;
import org.eclipse.jface.action.IAction;
import org.eclipse.team.internal.ccvs.core.ICVSRepositoryLocation;
/**
* Action that refreshs the tags in the CVS repositories view.
*/
public class RefreshTagsAction extends CVSRepoViewAction {
/**
* @see org.eclipse.team.internal.ccvs.ui.actions.CVSAction#execute(org.eclipse.jface.action.IAction)
*/
protected void execute(IAction action) {
ICVSRepositoryLocation[] locations = getSelectedRepositoryLocations();
RefreshRemoteProjectWizard.execute(getShell(), locations[0]);
}
/**
* @see org.eclipse.team.internal.ui.actions.TeamAction#isEnabled()
*/
protected boolean isEnabled() {
ICVSRepositoryLocation[] locations = getSelectedRepositoryLocations();
if (locations.length != 1) return false;
return true;
}
}