?? computer.java~6~
字號(hào):
package com.jbaptech.accp.netbar.server.entity;
import java.io.Serializable;
/**
* Class Computer description here.
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: 北京阿博泰克北大青鳥信息技術(shù)有限公司</p>
*
* @author luohao
* @version 1.0
*/
public class Computer
implements Serializable {
/**
* constructor.
*/
public Computer() {
}
/**
* id.
*/
private String id;
/**
* use flag.
*/
private String onUse;
/**
* notes.
*/
private String notes;
/**
* get id.
* @return String
*/
public final String getId() {
return this.id;
}
/**
* get use flag.
* @return String
*/
public final String getOnUse() {
return this.onUse;
}
/**
* get notes.
* @return String
*/
public final String getNotes() {
return this.notes;
}
/**
* set id.
* @param strId String
*/
public final void setId(final String strId) {
this.id = id;
}
/**
* set use flag.
* @param strOnUse String
*/
public final void setOnUse(final String strOnUse) {
this.onUse = onUse;
}
/**
* set notes.
* @param strNotes String
*/
public final void setNotes(final String strNotes) {
this.notes = notes;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -