?? tea.java
字號(hào):
package org.hibernate.mtm;
import java.util.HashSet;
import java.util.Set;
/**
* Tea generated by MyEclipse Persistence Tools
*/
public class Tea implements java.io.Serializable {
// Fields
private Integer tid;
private String tname;
private Set s=new HashSet();
// Constructors
public Set getS() {
return s;
}
public void setS(Set s) {
this.s = s;
}
/** default constructor */
public Tea() {
}
/** full constructor */
public Tea(String tname) {
this.tname = tname;
}
// Property accessors
public Integer getTid() {
return this.tid;
}
public void setTid(Integer tid) {
this.tid = tid;
}
public String getTname() {
return this.tname;
}
public void setTname(String tname) {
this.tname = tname;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -