-
- All Superinterfaces:
EventListener
public interface PopupMenuListener extends EventListener
A popup menu listener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpopupMenuCanceled(PopupMenuEvent e)This method is called when the popup menu is canceledvoidpopupMenuWillBecomeInvisible(PopupMenuEvent e)This method is called before the popup menu becomes invisible Note that a JPopupMenu can become invisible any timevoidpopupMenuWillBecomeVisible(PopupMenuEvent e)This method is called before the popup menu becomes visible
-
-
-
Method Detail
-
popupMenuWillBecomeVisible
void popupMenuWillBecomeVisible(PopupMenuEvent e)
This method is called before the popup menu becomes visible- Parameters:
e- aPopupMenuEventcontaining the source of the event
-
popupMenuWillBecomeInvisible
void popupMenuWillBecomeInvisible(PopupMenuEvent e)
This method is called before the popup menu becomes invisible Note that a JPopupMenu can become invisible any time- Parameters:
e- aPopupMenuEventcontaining the source of the event
-
popupMenuCanceled
void popupMenuCanceled(PopupMenuEvent e)
This method is called when the popup menu is canceled- Parameters:
e- aPopupMenuEventcontaining the source of the event
-
-