1 2 20 21 package javax.microedition.lcdui; 22 23 24 public class Command 25 { 26 27 public static final int SCREEN = 1; 28 public static final int BACK = 2; 29 public static final int CANCEL = 3; 30 public static final int OK = 4; 31 public static final int HELP = 5; 32 public static final int STOP = 6; 33 public static final int EXIT = 7; 34 public static final int ITEM = 8; 35 36 String label; 37 int commandType; 38 int priority; 39 40 41 public Command(String label, int commandType, int priority) 42 { 43 this.label = label; 44 this.commandType = commandType; 45 this.priority = priority; 46 } 47 48 49 public int getCommandType() 50 { 51 return commandType; 52 } 53 54 55 public String getLabel() 56 { 57 return label; 58 } 59 60 61 public int getPriority() 62 { 63 return priority; 64 } 65 66 } 67 | Popular Tags |