oracle.javatools.editor.insight
Interface ListInsightData
- All Superinterfaces:
- InsightData
- All Known Implementing Classes:
- TooltipInsightData
- public interface ListInsightData
- extends InsightData
The ListInsightData
interface contains public API
routines for an InsightData model that is based on a list model
(instead of say, a tree model.) The data model provides an
additional method for accessing the data through a list
interface.
- See Also:
InsightData
Method Summary |
javax.swing.ListModel |
getListModel()
Fetch a ListModel instance which represents this data model so that
it can be displayed in a JList. |
getListModel
public javax.swing.ListModel getListModel()
- Fetch a ListModel instance which represents this data model so that
it can be displayed in a JList. The ListModel is pretty generalized
(routines for getting size, getting elements, and getting notification
of changes), and is convenient for us to use.
- Returns:
- the ListModel instance representing this data