LPKeyMask.java
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. /**
  2.  * <p>Title: lipeng</p>
  3.  * <p>Description:
  4.  * You cannot remove this copyright and notice.
  5.  * You cannot use this file without the express permission of the author.
  6.  * All Rights Reserved</p>
  7.  * <p>Copyright: lizhenpeng (c) 2004</p>
  8.  * <p>Company: LP&P</p>
  9.  * @author lizhenpeng
  10.  * @version 1.0.0
  11.  * <p>
  12.  * Revise History
  13.  * </p>
  14.  */
  15. package lipeng;
  16. public class LPKeyMask
  17. {
  18.   public static final int MASK_KEY_LEFT = 0x0001;
  19.   public static final int MASK_KEY_LEFT_FLAG = 0x0100;
  20.   public static final int MASK_KEY_RIGHT = 0x0002;
  21.   public static final int MASK_KEY_RIGHT_FLAG = 0x0200;
  22.   public static final int MASK_KEY_UP = 0x0004;
  23.   public static final int MASK_KEY_UP_FLAG = 0x0400;
  24.   public static final int MASK_KEY_DOWN = 0x0008;
  25.   public static final int MASK_KEY_DOWN_FLAG = 0x0800;
  26.   public static final int MASK_KEY_OK = 0x0010;
  27.   public static final int MASK_KEY_OK_FLAG = 0x1000;
  28. }