blob: 8eb0d4efdf7da74f452998e2a1c832a10c2b6579 [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 DecrementRetargetAction extends RetargetAction {
/**
* Constructor for IncrementRetargetAction.
*/
public DecrementRetargetAction() {
super(
IncrementDecrementAction.DECREMENT,
LogicMessages.IncrementDecrementAction_Decrement_ActionLabelText);
setToolTipText(LogicMessages.IncrementDecrementAction_Decrement_ActionToolTipText);
setImageDescriptor(ImageDescriptor.createFromFile(LogicPlugin.class,
"icons/minus.gif")); //$NON-NLS-1$
}
}