Package adams.gui.core
Interface JComponentList.PopupMenuProvider
-
- All Known Implementing Classes:
JComponentList.CheckBoxListItem
,JComponentList.LabelListItem
- Enclosing class:
- JComponentList
public static interface JComponentList.PopupMenuProvider
An interface for list items that provide a popup menu.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BasePopupMenu
getPopupMenu()
Returns the popup menu.boolean
hasPopupMenu()
Returns whether this particular list item has a popup menu at the moment.
-
-
-
Method Detail
-
hasPopupMenu
boolean hasPopupMenu()
Returns whether this particular list item has a popup menu at the moment.- Returns:
- true if the provider has a popup menu
-
getPopupMenu
BasePopupMenu getPopupMenu()
Returns the popup menu.- Returns:
- the popup menu
- See Also:
hasPopupMenu()
-
-