?? processorsbean.java~4~
字號(hào):
package pcdiysystem;
import java.io.*;
/**
* <p>Title: 自助裝機(jī)系統(tǒng)</p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2006</p>
*
* <p>Company: </p>
*
* @author kamiiiyu
* @version 1.0
*/
public class ProcessorsBean
implements Serializable {
private String manufacturer;
private String clockSpeed;
private String type;
private String fsbs;
private String socket;
private String description;
public ProcessorsBean() {
}
public String getManufacturer(){
return this.manufacturer;
}
public String getClockSpeed(){
return this.clockSpeed;
}
public String getType(){
return this.type;
}
public String getFsbs(){
return this.fsbs;
}
public String getSocket(){
return this.socket;
}
public String detail(){
return this.description;
}
public void setManufacturer(String manufacturer){
this.manufacturer=manufacturer;
}
public void setClockSpeed(String clockSpeed){
this.clockSpeed=clockSpeed;
}
public void setType(String type){
this.type=type;
}
public void setFsbs(String fsbs){
this.fsbs=fsbs;
}
public void setSocket(String socket){
this.socket=socket;
}
public void setDescription(String description){
this.description=description;
}
private void readObject(ObjectInputStream ois) throws IOException,
ClassNotFoundException {
ois.defaultReadObject();
}
private void writeObject(ObjectOutputStream oos) throws IOException {
oos.defaultWriteObject();
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -