Package weka.gui.explorer
Class ClustererHandler
- java.lang.Object
-
- weka.gui.explorer.AbstractExplorerPanelHandler
-
- weka.gui.explorer.ClustererHandler
-
- All Implemented Interfaces:
Serializable
public class ClustererHandler extends AbstractExplorerPanelHandler
Manages theClustererPanel
.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
KEY_CLASS_INDEX
static String
KEY_IGNORED_ATTRIBUTES
static String
KEY_PERCENTAGE_SPLIT
static String
KEY_STORE_CLUSTERS
static String
KEY_TEST
static String
VALUE_CLASSES_TO_CLUSTERS
static String
VALUE_PERCENTAGE_SPLIT
static String
VALUE_SUPPLIED_TEST_SET
static String
VALUE_TRAINING_SET
-
Fields inherited from class weka.gui.explorer.AbstractExplorerPanelHandler
m_SkipHistory
-
-
Constructor Summary
Constructors Constructor Description ClustererHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
deserialize(weka.gui.explorer.Explorer.ExplorerPanel panel, Object data)
Deserializes the data and configures the panel.boolean
handles(weka.gui.explorer.Explorer.ExplorerPanel panel)
Checks whether this handler can process the given panel.Object
serialize(weka.gui.explorer.Explorer.ExplorerPanel panel)
Generates a view of the explorer panel that can be serialized.-
Methods inherited from class weka.gui.explorer.AbstractExplorerPanelHandler
deserialize, deserialize, getHandlers, getSkipHistory, getValue, restoreGOE, restoreSelectedIndex, restoreSelectedIndices, restoreSelectedState, restoreSelectedState, restoreSpinner, restoreText, serialize, serialize, setSkipHistory
-
-
-
-
Field Detail
-
KEY_TEST
public static final String KEY_TEST
- See Also:
- Constant Field Values
-
KEY_PERCENTAGE_SPLIT
public static final String KEY_PERCENTAGE_SPLIT
- See Also:
- Constant Field Values
-
KEY_CLASS_INDEX
public static final String KEY_CLASS_INDEX
- See Also:
- Constant Field Values
-
KEY_IGNORED_ATTRIBUTES
public static final String KEY_IGNORED_ATTRIBUTES
- See Also:
- Constant Field Values
-
KEY_STORE_CLUSTERS
public static final String KEY_STORE_CLUSTERS
- See Also:
- Constant Field Values
-
VALUE_PERCENTAGE_SPLIT
public static final String VALUE_PERCENTAGE_SPLIT
- See Also:
- Constant Field Values
-
VALUE_SUPPLIED_TEST_SET
public static final String VALUE_SUPPLIED_TEST_SET
- See Also:
- Constant Field Values
-
VALUE_TRAINING_SET
public static final String VALUE_TRAINING_SET
- See Also:
- Constant Field Values
-
VALUE_CLASSES_TO_CLUSTERS
public static final String VALUE_CLASSES_TO_CLUSTERS
- See Also:
- Constant Field Values
-
-
Method Detail
-
handles
public boolean handles(weka.gui.explorer.Explorer.ExplorerPanel panel)
Checks whether this handler can process the given panel.- Specified by:
handles
in classAbstractExplorerPanelHandler
- Parameters:
panel
- the panel to check- Returns:
- always true
-
serialize
public Object serialize(weka.gui.explorer.Explorer.ExplorerPanel panel)
Generates a view of the explorer panel that can be serialized.- Specified by:
serialize
in classAbstractExplorerPanelHandler
- Parameters:
panel
- the panel to serialize- Returns:
- the data to serialize
-
deserialize
public void deserialize(weka.gui.explorer.Explorer.ExplorerPanel panel, Object data)
Deserializes the data and configures the panel.- Specified by:
deserialize
in classAbstractExplorerPanelHandler
- Parameters:
panel
- the panel to updatedata
- the serialized data to restore the panel with
-
-