📄 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 + -