Package weka.gui.visualize
Interface InstanceInfo
- All Known Implementing Classes:
InstanceInfoFrame
public interface InstanceInfo
Interface for JFrames that display instance info.
- Version:
- $Revision: 8034 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
Method Summary
Modifier and TypeMethodDescriptionReturns the underlying data.Returns the currently displayed info text.void
setInfoData
(Vector<Instances> data) Sets the underlying data.void
setInfoText
(String text) Sets the text to display.
-
Method Details
-
setInfoText
Sets the text to display.- Parameters:
text
- the text to display
-
getInfoText
String getInfoText()Returns the currently displayed info text.- Returns:
- the info text
-
setInfoData
Sets the underlying data.- Parameters:
data
- the data of the info text
-
getInfoData
Returns the underlying data.- Returns:
- the data of the info text, can be null
-