EventManager.java
上传用户:luxiaowei
上传日期:2022-06-06
资源大小:58k
文件大小:0k
源码类别:

J2ME

开发平台:

Java

  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package com.framework;
  6. /**
  7.  *
  8.  * @author Swaroop Kumar
  9.  */
  10. public interface EventManager {
  11. public static final int FIRE_PRESSED = 0;    
  12. public static final int LEFT_SOFT_KEY_PRESSED = 1;
  13. public static final int RIGHT_SOFT_KEY_PRESSED = 2;
  14. public static final int SELECTION_CHANGED = 3;
  15. public static final int SCREEN_RESIZED = 4;
  16. public void event(int eventId,Object source,Object data );
  17. }