blob: f8a49bcc67521446eac9372358f21b5c09e76246 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2012 IBM Corporation, University of Stuttgart (IAAS) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation, University of Stuttgart (IAAS) - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.apache.ode.deploy.ui.editors;
import org.eclipse.emf.edit.ui.action.EditingDomainActionBarContributor;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.IToolBarManager;
/**
* No-op editor contributor
* @author Tammo van Lessen (IAAS)
* @author Simon Moser (IBM)
*/
public class ODEDeployMultiPageEditorContributor extends EditingDomainActionBarContributor {
public ODEDeployMultiPageEditorContributor() {
super();
createActions();
}
private void createActions() {
// new actions go here
}
public void contributeToMenu(IMenuManager manager) {
// contribute here
}
public void contributeToToolBar(IToolBarManager manager) {
// contribute here
}
}