?? terms.java
字號:
package com.zbaccp.ea.entity;
import java.util.HashSet;
import java.util.Set;
/**
* Terms entity.
*
* @author MyEclipse Persistence Tools
*/
public class Terms implements java.io.Serializable {
// Fields
private String id;
private String name;
private String description;
private Set classeses = new HashSet(0);
private Set courseses = new HashSet(0);
// Constructors
/** default constructor */
public Terms() {
}
/** minimal constructor */
public Terms(String id) {
this.id = id;
}
/** full constructor */
public Terms(String id, String name, String description, Set classeses,
Set courseses) {
this.id = id;
this.name = name;
this.description = description;
this.classeses = classeses;
this.courseses = courseses;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Set getClasseses() {
return this.classeses;
}
public void setClasseses(Set classeses) {
this.classeses = classeses;
}
public Set getCourseses() {
return this.courseses;
}
public void setCourseses(Set courseses) {
this.courseses = courseses;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -