EventManager.java
资源名称:src.zip [点击查看]
上传用户:luxiaowei
上传日期:2022-06-06
资源大小:58k
文件大小:0k
源码类别:
J2ME
开发平台:
Java
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.framework;
- /**
- *
- * @author Swaroop Kumar
- */
- public interface EventManager {
- public static final int FIRE_PRESSED = 0;
- public static final int LEFT_SOFT_KEY_PRESSED = 1;
- public static final int RIGHT_SOFT_KEY_PRESSED = 2;
- public static final int SELECTION_CHANGED = 3;
- public static final int SCREEN_RESIZED = 4;
- public void event(int eventId,Object source,Object data );
- }