blob: ea9d2c7e0ad303d309221c54dff44f3c6c262e84 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2017 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.internal.ui.actions;
import org.eclipse.dltk.ui.DLTKPluginImages;
import org.eclipse.jface.action.Action;
/**
* This is an action template for actions that toggle whether it links its
* selection to the active editor.
*
*
*/
public abstract class AbstractToggleLinkingAction extends Action {
/**
* Constructs a new action.
*/
public AbstractToggleLinkingAction() {
super(ActionMessages.ToggleLinkingAction_label);
setDescription(ActionMessages.ToggleLinkingAction_description);
setToolTipText(ActionMessages.ToggleLinkingAction_tooltip);
DLTKPluginImages.setLocalImageDescriptors(this, "synced.png"); //$NON-NLS-1$
//TODO: help! i need some body help! just not anybody help!
//PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IDLTKHelpContextIds.LINK_EDITOR_ACTION);
}
/**
* Runs the action.
*/
@Override
public abstract void run();
}