Package weka.gui.treevisualizer
Class TreeDisplayEvent
- java.lang.Object
-
- weka.gui.treevisualizer.TreeDisplayEvent
-
public class TreeDisplayEvent extends java.lang.ObjectAn event containing the user selection from the tree display- Version:
- $Revision: 7059 $
- Author:
- Malcolm Ware (mfw4@cs.waikato.ac.nz)
-
-
Field Summary
Fields Modifier and Type Field Description static intACCEPTStates that the user has accepted the tree.static intADD_CHILDRENstatic intCLASSIFY_CHILDAsks for another learning scheme to classify this node.static intNO_COMMANDstatic intREMOVE_CHILDRENstatic intSEND_INSTANCESCommand to remove instances from this node and send them to the VisualizePanel.
-
Constructor Summary
Constructors Constructor Description TreeDisplayEvent(int ar, java.lang.String id)Constructs an event with the specified command and what the command is applied to.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCommand()java.lang.StringgetID()
-
-
-
Field Detail
-
NO_COMMAND
public static final int NO_COMMAND
- See Also:
- Constant Field Values
-
ADD_CHILDREN
public static final int ADD_CHILDREN
- See Also:
- Constant Field Values
-
REMOVE_CHILDREN
public static final int REMOVE_CHILDREN
- See Also:
- Constant Field Values
-
ACCEPT
public static final int ACCEPT
States that the user has accepted the tree.- See Also:
- Constant Field Values
-
CLASSIFY_CHILD
public static final int CLASSIFY_CHILD
Asks for another learning scheme to classify this node.- See Also:
- Constant Field Values
-
SEND_INSTANCES
public static final int SEND_INSTANCES
Command to remove instances from this node and send them to the VisualizePanel.- See Also:
- Constant Field Values
-
-