Package org.jbpm.ui.editor

Source Code of org.jbpm.ui.editor.EditorActionsContributor

package org.jbpm.ui.editor;

import org.eclipse.ui.IActionBars;
import org.eclipse.ui.internal.SaveAction;
import org.eclipse.ui.internal.SaveAllAction;
import org.eclipse.ui.part.EditorActionBarContributor;

public class EditorActionsContributor extends EditorActionBarContributor {

    @Override
    public void init(IActionBars bars) {
        bars.setGlobalActionHandler("ru.runa.jbpm.ui.save", new SaveAction(getPage().getWorkbenchWindow()));
        bars.setGlobalActionHandler("ru.runa.jbpm.ui.saveAll", new SaveAllAction(getPage().getWorkbenchWindow()));
        super.init(bars);
    }

}
TOP

Related Classes of org.jbpm.ui.editor.EditorActionsContributor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.