org.eclipse.swt.events
Interface MenuListener

All Superinterfaces:
EventListener, org.eclipse.swt.internal.SWTEventListener
All Known Implementing Classes:
MenuAdapter

public interface MenuListener
extends org.eclipse.swt.internal.SWTEventListener

Unsafe: Classes which implement this interface provide methods that deal with the hiding and showing of menus.

After creating an instance of a class that implements this interface it can be added to a control using the addMenuListener method and removed using the removeMenuListener method. When a menu is hidden or shown, the appropriate method will be invoked.

See Also:
MenuAdapter, MenuEvent

Method Summary
 void menuHidden(MenuEvent e)
          Suppressed: Sent when a menu is hidden.
 void menuShown(MenuEvent e)
          Suppressed: Sent when a menu is shown.
 

Method Detail

menuHidden

public void menuHidden(MenuEvent e)
Suppressed: Sent when a menu is hidden.

Parameters:
e - an event containing information about the menu operation

menuShown

public void menuShown(MenuEvent e)
Suppressed: Sent when a menu is shown.

Parameters:
e - an event containing information about the menu operation


comments?