ewe.ui
Class TableEvent

java.lang.Object
  extended byewe.ui.Event
      extended byewe.ui.ControlEvent
          extended byewe.ui.TableEvent

public class TableEvent
extends ControlEvent


Field Summary
static int CELL_CLICKED
           
static int CELL_DOUBLE_CLICKED
           
 Object cellData
          For CELL_CLICKED, the data associated with the cell that was clicked.
 int col
          For CELL_CLICKED, the cell which was clicked.
static int FLAG_SELECTED_BY_ARROWKEY
           
 int row
          For CELL_CLICKED, the row which was clicked.
static int SELECTION_CHANGED
           
 
Fields inherited from class ewe.ui.ControlEvent
action, CANCELLED, EXITED, exitKey, exitKeyModifiers, FOCUS_IN, FOCUS_OUT, MENU_SHOWN, oldOrNewFocus, OPERATION_CANCELLED, POPUP_CLOSED, PRESSED, TIMER
 
Fields inherited from class ewe.ui.Event
consumed, events, flags, target, timeStamp, type, window
 
Constructor Summary
TableEvent(int type, Control target)
           
 
Methods inherited from class ewe.ui.Event
toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode
 

Field Detail

SELECTION_CHANGED

public static final int SELECTION_CHANGED
See Also:
Constant Field Values

CELL_CLICKED

public static final int CELL_CLICKED
See Also:
Constant Field Values

CELL_DOUBLE_CLICKED

public static final int CELL_DOUBLE_CLICKED
See Also:
Constant Field Values

FLAG_SELECTED_BY_ARROWKEY

public static final int FLAG_SELECTED_BY_ARROWKEY
See Also:
Constant Field Values

row

public int row
For CELL_CLICKED, the row which was clicked.


col

public int col
For CELL_CLICKED, the cell which was clicked.


cellData

public Object cellData
For CELL_CLICKED, the data associated with the cell that was clicked.

Constructor Detail

TableEvent

public TableEvent(int type,
                  Control target)