Package weka.gui.visualize
Class AttributePanelEvent
java.lang.Object
weka.gui.visualize.AttributePanelEvent
Class encapsulating a change in the AttributePanel's selected x and y
attributes.
- Version:
- $Revision: 8034 $
- Author:
- Mark Hall (mhall@cs.waikato.ac.nz)
-
Field Summary
Modifier and TypeFieldDescriptionint
The index for the new attributeboolean
True if the x selection changedboolean
True if the y selection changed -
Constructor Summary
ConstructorDescriptionAttributePanelEvent
(boolean xChange, boolean yChange, int indexVal) Constructor -
Method Summary
-
Field Details
-
m_xChange
public boolean m_xChangeTrue if the x selection changed -
m_yChange
public boolean m_yChangeTrue if the y selection changed -
m_indexVal
public int m_indexValThe index for the new attribute
-
-
Constructor Details
-
AttributePanelEvent
public AttributePanelEvent(boolean xChange, boolean yChange, int indexVal) Constructor- Parameters:
xChange
- true if a change occured to the x selectionyChange
- true if a change occured to the y selectionindexVal
- the index of the new attribute
-