All Downloads are FREE. Search and download functionalities are using the official Maven repository.

burp.api.montoya.ui.menu.MenuBar Maven / Gradle / Ivy

There is a newer version: 2024.12
Show newest version
package burp.api.montoya.ui.menu;

import burp.api.montoya.core.Registration;

import javax.swing.JMenu;

/**
 * The top menu bar for the main suite frame.
 */
public interface MenuBar
{
    /**
     * Register a menu to be added to the menu bar.
     * This option is available if you want more control over the menu structure.
     *
     * @param menu The menu to be registered.
     *
     * @return A {@link Registration} for the menu.
     */
    Registration registerMenu(JMenu menu);

    /**
     * Register a menu to be added to the menu bar.
     * This option is available if you want to add a simple menu.
     *
     * @param menu The menu to be registered.
     *
     * @return A {@link Registration} for the menu.
     */
    Registration registerMenu(Menu menu);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy