?? examtype.java
字號:
package org.yeeku.model;
import java.util.*;
import java.io.Serializable;
public class ExamType implements Serializable
{
private int id;
private String examName;
private String examTime;
private Set<Question> questions = new HashSet<Question>();
public ExamType()
{
}
public ExamType(String examName,String examTime)
{
this.examName = examName;
this.examTime = examTime;
}
public void setId(int id)
{
this.id = id;
}
public void setExamName(String examName)
{
this.examName = examName;
}
public void setExamTime(String examTime)
{
this.examTime = examTime;
}
public void setQuestions(Set<Question> questions)
{
this.questions = questions;
}
public int getId()
{
return this.id;
}
public String getExamTime()
{
return this.examTime;
}
public String getExamName()
{
return this.examName;
}
public Set<Question> getQuestions()
{
return this.questions;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -