| java.lang.Object com.jeta.forms.gui.form.GridCellEvent
GridCellEvent | public class GridCellEvent (Code) | | A GridCellEvent gets fired when a GridComponent changes or is
selected. The GridComponent is responsible for firing the event. This event
is only required during design mode.
author: Jeff Tassin |
CELL_CHANGED | final public static int CELL_CHANGED(Code) | | event ids
|
CELL_SELECTED | final public static int CELL_SELECTED(Code) | | |
COMPONENT_NAME_CHANGED | final public static String COMPONENT_NAME_CHANGED(Code) | | common commands
|
EDIT_COMPONENT | final public static int EDIT_COMPONENT(Code) | | |
GridCellEvent | public GridCellEvent(int id, GridComponent gc)(Code) | | Creates a GridCellEvent with the specified id and grid
component.
|
GridCellEvent | public GridCellEvent(int id, GridComponent gc, String cmd)(Code) | | Creates a GridCellEvent with the specified id and grid
component.
Parameters: id - the id for this event Parameters: gc - the GridComponent associated with this event Parameters: cmd - an optional command to associate with this event. |
getCommand | public String getCommand()(Code) | | Returns an optional command associated with the event id. Can be null.
|
getId | public int getId()(Code) | | Returns the event identifier. either: CELL_CHANGED, EDIT_COMPONENT,
CELL_SELECTED
|
|
|