blob: e9b99325cf5262cc1a36a843d6af9e360935c6c5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2010 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.gef.examples.logicdesigner.actions;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.actions.RetargetAction;
import org.eclipse.gef.examples.logicdesigner.LogicMessages;
import org.eclipse.gef.examples.logicdesigner.LogicPlugin;
/**
* @author hudsonr
* @since 2.1
*/
public class IncrementRetargetAction extends RetargetAction {
/**
* Constructor for IncrementRetargetAction.
*
* @param actionID
* @param label
*/
public IncrementRetargetAction() {
super(
IncrementDecrementAction.INCREMENT,
LogicMessages.IncrementDecrementAction_Increment_ActionLabelText);
setToolTipText(LogicMessages.IncrementDecrementAction_Increment_ActionToolTipText);
setImageDescriptor(ImageDescriptor.createFromFile(LogicPlugin.class,
"icons/plus.gif")); //$NON-NLS-1$
}
}