/******************************************************************************* * Copyright (c) 2000, 2005 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.gef.examples.logicdesigner.LogicEditor; import org.eclipse.gef.examples.logicdesigner.LogicMessages; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.ui.actions.RetargetAction; /** * @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(LogicEditor.class,"icons/plus.gif")); //$NON-NLS-1$ } }