lpkeymask.java
来自「这个是用j2me开发的.而且可以直接运行.只要相应的模拟器!」· Java 代码 · 共 31 行
JAVA
31 行
/**
* <p>Title: lipeng</p>
* <p>Description:
* You cannot remove this copyright and notice.
* You cannot use this file without the express permission of the author.
* All Rights Reserved</p>
* <p>Copyright: lizhenpeng (c) 2004</p>
* <p>Company: LP&P</p>
* @author lizhenpeng
* @version 1.0.0
* <p>
* Revise History
* </p>
*/
package lipeng;
public class LPKeyMask
{
public static final int MASK_KEY_LEFT = 0x0001;
public static final int MASK_KEY_LEFT_FLAG = 0x0100;
public static final int MASK_KEY_RIGHT = 0x0002;
public static final int MASK_KEY_RIGHT_FLAG = 0x0200;
public static final int MASK_KEY_UP = 0x0004;
public static final int MASK_KEY_UP_FLAG = 0x0400;
public static final int MASK_KEY_DOWN = 0x0008;
public static final int MASK_KEY_DOWN_FLAG = 0x0800;
public static final int MASK_KEY_OK = 0x0010;
public static final int MASK_KEY_OK_FLAG = 0x1000;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?