blob: d1785d000972636f958281f34050344a3a939dc0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 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.subscriber;
import org.eclipse.team.internal.ccvs.ui.Policy;
import org.eclipse.team.internal.ccvs.ui.actions.CVSAction;
import org.eclipse.team.internal.ui.Utils;
import org.eclipse.team.internal.ui.synchronize.ActionDelegateWrapper;
import org.eclipse.team.ui.synchronize.ISynchronizePageConfiguration;
/**
* Superclass of CVS participant action delegates that uses the classname as the key
* to access the text from the resource bundle
*/
public class CVSActionDelegateWrapper extends ActionDelegateWrapper {
public CVSActionDelegateWrapper(CVSAction delegate, ISynchronizePageConfiguration configuration, String id) {
super(delegate, configuration, id);
Utils.initAction(this, getBundleKeyPrefix(), Policy.getActionBundle());
}
public CVSActionDelegateWrapper(CVSAction delegate, ISynchronizePageConfiguration configuration) {
this(delegate, configuration, delegate.getId());
}
/**
* Return the key to the action text in the resource bundle.
* The default is the class name followed by a dot (.).
* @return the bundle key prefix
*/
protected String getBundleKeyPrefix() {
String name = getDelegate().getClass().getName();
int lastDot = name.lastIndexOf("."); //$NON-NLS-1$
if (lastDot == -1) {
return name;
}
return name.substring(lastDot + 1) + "."; //$NON-NLS-1$
}
}