| java.lang.Object com.sun.midp.events.Event com.sun.midp.lcdui.LCDUIEvent
LCDUIEvent | class LCDUIEvent extends Event (Code) | | An subclass for "synthetic" LCDUI events. These events are generated by
LCDUI for its own purposes, and they include events whose type codes are
SCREEN_CHANGE_EVENT, CALL_SERIALLY_EVENT, INVALIDATE_EVENT and ITEM_EVENT.
Events generated by the
system, such as keystrokes and commands, are not considered to be synthetic
events because they represent some actual user action.
TBD: Class need to be PUIBLIC only
if LCDUIEvent will be needed outside of the package
|
ITEM_SIZE_REFRESH | final static int ITEM_SIZE_REFRESH(Code) | | Constant specifying that an ITEM_EVENT requests a size refresh.
|
ITEM_STATE_CHANGED | final static int ITEM_STATE_CHANGED(Code) | | Constant specifying that an ITEM_EVENT indicates a state change.
|
changedItem | Item changedItem(Code) | | Item for the item changed event.
|
hasForeground | boolean hasForeground(Code) | | True if the display has be put in the foreground.
|
minorCode | int minorCode(Code) | | The event's minor code. For events of type ITEM_EVENT, the minor code
is either ITEM_STATE_CHANGED or ITEM_SIZE_REFRESH.
|
createBasicEvent | static LCDUIEvent createBasicEvent(DisplayEventConsumer d, int type)(Code) | | Create a basic LCDUI event.
Parameters: d - Target Display Parameters: type - event ID type initialized event |
createItemEvent | static LCDUIEvent createItemEvent(Item src, int minor)(Code) | | Create an item state changed event.
Parameters: src - the Item src to the event Parameters: minor - the minor code initialized event |
createScreenChangeEvent | static LCDUIEvent createScreenChangeEvent(DisplayEventConsumer parent, Displayable d)(Code) | | Create a screen change event.
Parameters: parent - parent Display of the Displayable Parameters: d - The Displayable to change the current screen to initialized event |
createScreenRepaintEvent | static LCDUIEvent createScreenRepaintEvent(DisplayEventConsumer display)(Code) | | Create a screen repaint event.
Parameters: display - parent Display of the Displayable initialized event |
Methods inherited from com.sun.midp.events.Event | public int getType()(Code)(Java Doc)
|
|
|