Package adams.gui.core
Interface AbstractNamedHistoryPanel.HistoryEntryToolTipProvider<T>
-
- All Known Implementing Classes:
AssociateTab.HistoryPanel
,AttributeSelectionTab.HistoryPanel
,ClassifyTab.HistoryPanel
,ClusterTab.HistoryPanel
,ExperimentTab.HistoryPanel
- Enclosing class:
- AbstractNamedHistoryPanel<T>
public static interface AbstractNamedHistoryPanel.HistoryEntryToolTipProvider<T>
Interface for classes that generate tool tips for entries in the history.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
createHistoryEntryToolTip(AbstractNamedHistoryPanel<T> history, int index)
Gets called when a tooltip needs to get generated.
-
-
-
Method Detail
-
createHistoryEntryToolTip
String createHistoryEntryToolTip(AbstractNamedHistoryPanel<T> history, int index)
Gets called when a tooltip needs to get generated.- Parameters:
history
- the historyindex
- the index in the history- Returns:
- the generated tool tip, null if not available
-
-