?? type1.java
字號:
package cn.handson.base;
import java.util.HashSet;
import java.util.Set;
/**
* Type1 generated by MyEclipse - Hibernate Tools
*/
public class Type1 implements java.io.Serializable {
// Fields
private Integer typeId;
private String typeTitle;
private String typeDesc;
private Set constructs = new HashSet(0);
// Constructors
/** default constructor */
public Type1() {
}
/** minimal constructor */
public Type1(String typeTitle) {
this.typeTitle = typeTitle;
}
/** full constructor */
public Type1(String typeTitle, String typeDesc, Set constructs) {
this.typeTitle = typeTitle;
this.typeDesc = typeDesc;
this.constructs = constructs;
}
// Property accessors
public Integer getTypeId() {
return this.typeId;
}
public void setTypeId(Integer typeId) {
this.typeId = typeId;
}
public String getTypeTitle() {
return this.typeTitle;
}
public void setTypeTitle(String typeTitle) {
this.typeTitle = typeTitle;
}
public String getTypeDesc() {
return this.typeDesc;
}
public void setTypeDesc(String typeDesc) {
this.typeDesc = typeDesc;
}
public Set getConstructs() {
return this.constructs;
}
public void setConstructs(Set constructs) {
this.constructs = constructs;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -