?? eventlistener.java
字號:
package com.jmobilecore.ui.core;
/**
* 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 <code>actionPerformed</code> method is
* invoked.
*
* @author Greg Gridin
*/
public interface EventListener {
/**
* Event OK
*/
public static final int EVENT_OK = 0;
/**
* Event ESCAPE
*/
public static final int EVENT_ESCAPE = 1;
/**
* Event DONE
*/
public static final int EVENT_DONE = 2;
/**
* Event ERROR
*/
public static final int EVENT_ERROR = 3;
/**
* Invoked when an action occurs.
*/
public void actionPerformed(int rslt);
} // class EventListener
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -