?? type.java
字號(hào):
package myBean;
import java.io.*;
public class Type implements Serializable {
/* 私有字段 */
private String typeId;
private String typeName;
private String typeDescription;
/* JavaBean屬性訪問方法 */
public String getTypeId() { return typeId; }
public void setTypeId(String typeId) { this.typeId = typeId.trim(); }
public String getTypeName() { return typeName; }
public void setTypeName(String typeName) { this.typeName = typeName; }
public String getTypeDescription() { return typeDescription; }
public void setTypeDescription(String typeDescription) { this.typeDescription = typeDescription; }
/**共公方法*/
public String toString() {
return getTypeName();
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -