blob: 8b1b64abbec3e105e5fc4ec314c15a8a95f348fa [file] [log] [blame]
/*
* Copyright (c) 2010, 2012, 2015 Eike Stepper (Berlin, Germany) 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:
* Martin Fluegge - initial API and implementation
*
*/
package org.eclipse.emf.cdo.dawn.examples.acore.diagram.part;
import org.eclipse.gmf.runtime.diagram.ui.parts.DiagramActionBarContributor;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.ui.IActionBars;
import org.eclipse.ui.IWorkbenchActionConstants;
import org.eclipse.ui.IWorkbenchPage;
/**
* @generated
*/
public class AcoreDiagramActionBarContributor extends DiagramActionBarContributor
{
/**
* @generated
*/
@Override
protected Class getEditorClass()
{
return AcoreDiagramEditor.class;
}
/**
* @generated
*/
@Override
protected String getEditorId()
{
return AcoreDiagramEditor.ID;
}
/**
* @generated
*/
@Override
public void init(IActionBars bars, IWorkbenchPage page)
{
super.init(bars, page);
// print preview
IMenuManager fileMenu = bars.getMenuManager().findMenuUsingPath(IWorkbenchActionConstants.M_FILE);
assert fileMenu != null;
fileMenu.remove("pageSetupAction"); //$NON-NLS-1$
}
}