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