org.oddjob.arooa.design.designer.MenuProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arooa Show documentation
Show all versions of arooa Show documentation
A Rip Off Of Ant - A drag and drop component framework.
package org.oddjob.arooa.design.designer;
import javax.swing.JMenu;
/**
* Provides menus for a Swing view.
*
* @author rob
*
*/
public interface MenuProvider extends PopupMenuProvider {
/**
* Get the menus that are the menu bar.
*
* @return
*/
public JMenu[] getJMenuBar();
}