?? cwtpstatue.java
字號:
package net.sourceforge.jwap.wtp;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2006</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class CWTPStatue {
public static byte ResultCode=0x00;
public static int type=0;
public CWTPStatue() {
}
public static void main(String[] args) {
CWTPStatue cwtpstatue = new CWTPStatue();
}
/**
* SetResultState
*
* @param Scode byte
*/
public static void SetResultState(byte Scode) {
ResultCode=Scode;
}
/**
* GetResultState
*/
public static int GetResultState() {
return ResultCode;
}
/**
* SetType
*
* @param anIntType int
*/
public static void SetType(int anIntType) {
type=anIntType;
}
/**
* GetType
*/
public static int GetType() {
return type;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -