Example usage for org.eclipse.jface.action IAction interface-usage

List of usage examples for org.eclipse.jface.action IAction interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.action IAction interface-usage.

Usage

From source file ca.mcgill.cs.swevo.qualyzer.editors.ITestableAction.java

/**
 *
 */
public interface ITestableAction extends IAction {

    /**

From source file ch.elexis.laborimport.hl7.universal.Importer.java

public class Importer extends Action implements IAction {
    public static final String MY_LAB = "Eigenlabor";

    private HL7Parser hlp = new DefaultHL7Parser(MY_LAB);

    public Importer() {

From source file com.agynamix.platform.frontend.action.HideAction.java

public class HideAction extends Action implements IAction {

    final ApplicationWindow window;

    public HideAction(ApplicationWindow w) {
        this.window = w;

From source file com.agynamix.platform.frontend.action.ToggleShowStatuslineAction.java

public class ToggleShowStatuslineAction extends Action implements IAction {

    final ApplicationWindow window;
    Control statusline;

    Rectangle position;

From source file com.agynamix.platform.frontend.action.ToggleShowToolbarAction.java

public class ToggleShowToolbarAction extends Action implements IAction {

    final ApplicationWindow window;
    Control toolbar;

    public ToggleShowToolbarAction(ApplicationWindow w) {

From source file com.agynamix.simidude.frontend.action.ToggleMonitorClipboardAction.java

public class ToggleMonitorClipboardAction extends Action implements IAction, IActionWithValue {

    final ApplicationWindow window;

    public ToggleMonitorClipboardAction(ApplicationWindow w) {
        super("Monitor Clipboard", IAction.AS_CHECK_BOX);

From source file com.android.ide.eclipse.adt.internal.editors.layout.gle2.DelegatingAction.java

/**
 * Implementation of {@link IAction} which delegates to a different
 * {@link IAction} which allows a subclass to wrap and customize some of the
 * behavior of a different action
 */
public class DelegatingAction implements IAction {

From source file com.android.ide.eclipse.auidt.internal.editors.layout.gle2.DelegatingAction.java

/**
 * Implementation of {@link IAction} which delegates to a different
 * {@link IAction} which allows a subclass to wrap and customize some of the
 * behavior of a different action
 */
public class DelegatingAction implements IAction {

From source file com.archimatetool.editor.views.tree.actions.IViewerAction.java

/**
 * IViewerAction
 * 
 * @author Phillip Beauvoir
 */
public interface IViewerAction extends IAction {

From source file com.atlassian.connector.eclipse.internal.crucible.IReviewChangeListenerAction.java

/**
 * 
 * @author Jacek Jaroczynski
 */
public interface IReviewChangeListenerAction extends IAction {
    void updateReview(Review updatedReview, CrucibleFileInfo updatedFile);