Interface MenuListener

All Superinterfaces:
EventListener
public interface MenuListener
extends EventListener

Defines a listener for menu events.

Methods

Modifier and Type Method Description
void menuCanceled​(MenuEvent e)

Invoked when the menu is canceled.

void menuDeselected​(MenuEvent e)

Invoked when the menu is deselected.

void menuSelected​(MenuEvent e)

Invoked when a menu is selected.

Methods

void menuSelected(MenuEvent e)

Invoked when a menu is selected.

Parameters:
e - a MenuEvent object
void menuDeselected(MenuEvent e)

Invoked when the menu is deselected.

Parameters:
e - a MenuEvent object
void menuCanceled(MenuEvent e)

Invoked when the menu is canceled.

Parameters:
e - a MenuEvent object