mil.jpeojtrs.sca.sad.diagram.part.SadDiagramActionBarContributor.java Source code

Java tutorial

Introduction

Here is the source code for mil.jpeojtrs.sca.sad.diagram.part.SadDiagramActionBarContributor.java

Source

/**
 * This file is protected by Copyright. 
 * Please refer to the COPYRIGHT file distributed with this source distribution.
 * 
 * This file is part of REDHAWK IDE.
 * 
 * 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.
 *
 */
// BEGIN GENERATED CODE

package mil.jpeojtrs.sca.sad.diagram.part;

import org.eclipse.gmf.runtime.common.ui.action.global.GlobalActionId;
import org.eclipse.gmf.runtime.diagram.ui.parts.DiagramActionBarContributor;
import org.eclipse.gmf.runtime.diagram.ui.printing.render.actions.EnhancedPrintActionHelper;
import org.eclipse.gmf.runtime.diagram.ui.printing.render.actions.RenderedPrintPreviewAction;
import org.eclipse.jface.action.GroupMarker;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.ui.IActionBars;
import org.eclipse.ui.IWorkbenchActionConstants;
import org.eclipse.ui.IWorkbenchPage;

/**
 * @generated
 */
public class SadDiagramActionBarContributor extends DiagramActionBarContributor {

    /**
     * @generated
     */
    protected Class getEditorClass() {
        return SadDiagramEditor.class;
    }

    /**
     * @generated
     */
    protected String getEditorId() {
        return SadDiagramEditor.ID;
    }

    /**
     * @generated
     */
    public void init(IActionBars bars, IWorkbenchPage page) {
        super.init(bars, page);
        // print preview
        IMenuManager fileMenu = bars.getMenuManager().findMenuUsingPath(IWorkbenchActionConstants.M_FILE);
        assert fileMenu != null;
        IAction printPreviewAction = new RenderedPrintPreviewAction(new EnhancedPrintActionHelper());
        fileMenu.insertBefore("print", printPreviewAction); //$NON-NLS-1$
        IMenuManager editMenu = bars.getMenuManager().findMenuUsingPath(IWorkbenchActionConstants.M_EDIT);
        assert editMenu != null;
        if (editMenu.find("validationGroup") == null) { //$NON-NLS-1$
            editMenu.add(new GroupMarker("validationGroup")); //$NON-NLS-1$
        }
        IAction validateAction = new ValidateAction(page);
        editMenu.appendToGroup("validationGroup", validateAction); //$NON-NLS-1$
        bars.setGlobalActionHandler(GlobalActionId.SAVE, null);
    }
}