?? systeminfo.java
字號:
/*
$Author: $
$Date: $
$Revision: $
$NoKeywords: $
*/
package jp.co.ntl;
import java.io.Serializable;
public class SystemInfo implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
public final static int ID_MACADRESS = 0;
public final static int ID_USBSERIAL = 1;
private int idType;
private String version;
private String identify;
public SystemInfo(int idType) {
this.idType = idType;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public void setIdentify(String identify) {
this.identify = identify;
}
public String getIdentify() {
return identify;
}
public int getIDType() {
return idType;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -