jMobileCore toolkit

com.jmobilecore.ui.core
Interface EventListener


public interface EventListener

The listener interface for receiving action events. The class that is interested in processing an action event implements this interface. When the action event occurs, that object's actionPerformed method is invoked.

Author:
Greg Gridin

Field Summary
static int EVENT_DONE
          Event DONE
static int EVENT_ERROR
          Event ERROR
static int EVENT_ESCAPE
          Event ESCAPE
static int EVENT_OK
          Event OK
 
Method Summary
 void actionPerformed(int rslt)
          Invoked when an action occurs.
 

Field Detail

EVENT_DONE

static final int EVENT_DONE
Event DONE

See Also:
Constant Field Values

EVENT_ERROR

static final int EVENT_ERROR
Event ERROR

See Also:
Constant Field Values

EVENT_ESCAPE

static final int EVENT_ESCAPE
Event ESCAPE

See Also:
Constant Field Values

EVENT_OK

static final int EVENT_OK
Event OK

See Also:
Constant Field Values
Method Detail

actionPerformed

void actionPerformed(int rslt)
Invoked when an action occurs.


jMobileCore toolkit