blob: 31ceaa20fa654ee7c48c05960319d7b1c43ddb45 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) 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:
* Lorenzo Bettini - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.parsley.util;
import org.eclipse.ui.IActionBars;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchPart;
/**
* Utility methods to retrieve action bars from a part and site
*
* @author Lorenzo Bettini
*
*/
public class ActionBarsUtils {
protected ActionBarsUtils() {
}
public static IActionBars getActionBars(IWorkbenchPart part) {
if (part instanceof IViewPart) {
return ((IViewPart) part).getViewSite().getActionBars();
} else if (part instanceof IEditorPart) {
return ((IEditorPart) part).getEditorSite().getActionBars();
}
return null;
}
}