?? choice.java
字號(hào):
package com.emis.model.vote.hibernate;
import java.util.HashSet;
import java.util.Set;
/**
* Choice generated by MyEclipse - Hibernate Tools
*/
public class Choice implements java.io.Serializable {
// Fields
private Integer id;
private Theme theme;
private String name;
private Set results = new HashSet(0);
// Constructors
/** default constructor */
public Choice() {
}
/** minimal constructor */
public Choice(Integer id, Theme theme, String name) {
this.id = id;
this.theme = theme;
this.name = name;
}
/** full constructor */
public Choice(Integer id, Theme theme, String name, Set results) {
this.id = id;
this.theme = theme;
this.name = name;
this.results = results;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Theme getTheme() {
return this.theme;
}
public void setTheme(Theme theme) {
this.theme = theme;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Set getResults() {
return this.results;
}
public void setResults(Set results) {
this.results = results;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -