Package weka.gui.explorer
Interface Explorer.ExplorerPanel
-
- All Known Implementing Classes:
AssociationsPanel,AttributeSelectionPanel,ClassifierPanel,ClustererPanel,PreprocessPanel,VisualizePanel
- Enclosing class:
- Explorer
public static interface Explorer.ExplorerPanelA common interface for panels to be displayed in the Explorer- Version:
- $Revision: 10438 $
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExplorergetExplorer()returns the parent Explorer framejava.lang.StringgetTabTitle()Returns the title for the tab in the Explorerjava.lang.StringgetTabTitleToolTip()Returns the tooltip for the tab in the ExplorervoidsetExplorer(Explorer parent)Sets the Explorer to use as parent frame (used for sending notifications about changes in the data)voidsetInstances(Instances inst)Tells the panel to use a new set of instances.
-
-
-
Method Detail
-
setExplorer
void setExplorer(Explorer parent)
Sets the Explorer to use as parent frame (used for sending notifications about changes in the data)- Parameters:
parent- the parent frame
-
getExplorer
Explorer getExplorer()
returns the parent Explorer frame- Returns:
- the parent
-
setInstances
void setInstances(Instances inst)
Tells the panel to use a new set of instances.- Parameters:
inst- a set of Instances
-
getTabTitle
java.lang.String getTabTitle()
Returns the title for the tab in the Explorer- Returns:
- the title of this tab
-
getTabTitleToolTip
java.lang.String getTabTitleToolTip()
Returns the tooltip for the tab in the Explorer- Returns:
- the tooltip of this tab
-
-