001/*
002// This software is subject to the terms of the Eclipse Public License v1.0
003// Agreement, available at the following URL:
004// http://www.eclipse.org/legal/epl-v10.html.
005// You must accept the terms of that agreement to use this software.
006//
007// Copyright (C) 2008-2009 Pentaho
008// All Rights Reserved.
009*/
010package mondrian.gui;
011
012import javax.swing.*;
013
014public interface WorkbenchMenubarPlugin {
015    public void addItemsToMenubar(JMenuBar menubar);
016    public void setWorkbench(Workbench workbench);
017}
018
019// End WorkbenchMenubarPlugin.java