commandstate.java
来自「有关j2me的很好的例子可以研究一下」· Java 代码 · 共 39 行
JAVA
39 行
/** * * @(#)CommandState.java 1.3 01/03/30 * * Copyright 2001 by Sun Microsystems, Inc., * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. * All rights reserved. */package com.sun.midp;/** Holds the state for MIDlet Suite management commands. */class CommandState { /** status of the last command */ int status; /** the initial command so we can loop (autotest) */ int initialCommand; /** the next command to after the initial command, set by the processor */ int nextCommand; /** overwrite the existing version of the MIDlet suite when installing */ boolean forceOverwrite; /** location of the MIDlet suite to install */ String suiteURL; /** the storage name given to a suite when installed */ String suiteStorageName; /** remove the suite after running it */ boolean runOnce; /** repeat the install-run-remove process until the suite is not found */ boolean autotest; /** filename of local descriptor, for development systems */ String descriptorName; /** what midlet to run in the suite */ String midletName; /** class name of MIDlet, for development systems */ String midletClassName; /** did we display the Java logo yet */ boolean logoDisplayed;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?