blob: 2480ca1dec7e3a120b7334f00b9bb6eaf2b416ed [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.actions;
import org.eclipse.jface.action.IAction;
import org.eclipse.team.internal.ccvs.core.CVSException;
import org.eclipse.team.internal.ccvs.core.ICVSResource;
/**
* This action shows the CVS workspace participant into a model dialog. For single file
* selection, the compare editor is shown instead.
*
* @since 3.0
*/
public class CompareWithRemoteAction extends SyncAction {
/*
* Update the text label for the action based on the tags in the selection.
* @see TeamAction#setActionEnablement(org.eclipse.jface.action.IAction)
*/
@Override
protected void setActionEnablement(IAction action) {
super.setActionEnablement(action);
action.setText(calculateActionTagValue());
}
/**
* Enable for resources that are managed (using super) or whose parent is a CVS folder.
*
* @see org.eclipse.team.internal.ccvs.ui.actions.WorkspaceAction#isEnabledForCVSResource(org.eclipse.team.internal.ccvs.core.ICVSResource)
*/
@Override
protected boolean isEnabledForCVSResource(ICVSResource cvsResource) throws CVSException {
return super.isEnabledForCVSResource(cvsResource) || cvsResource.getParent().isCVSFolder();
}
@Override
protected boolean isEnabledForNonExistantResources() {
return true;
}
}