?? question.java
字號:
package org.yeeku.model;
import java.io.Serializable;
public class Question implements Serializable
{
private int id;
private String quTitle;
private String quHard;
private String quScore;
private String quAnswer;
private String quType;
private String selectOption;
private ExamType examType;
public Question()
{
}
public Question(String quTitle,String quHard,String quScore,
String quAnswer,String quType,String selectOption , ExamType examType)
{
this.quTitle = quTitle;
this.quHard = quHard;
this.quScore = quScore;
this.quAnswer = quAnswer;
this.quType = quType;
this.selectOption = selectOption;
this.examType = examType;
}
public void setSelectOption(String selectOption)
{
this.selectOption = selectOption;
}
public String getSelectOption()
{
return this.selectOption;
}
public void setId(int id)
{
this.id = id;
}
public void setExamType(ExamType examType)
{
this.examType = examType;
}
public void setQuTitle(String quTitle)
{
this.quTitle = quTitle;
}
public void setQuHard(String quHard)
{
this.quHard = quHard;
}
public void setQuScore(String quScore)
{
this.quScore = quScore;
}
public void setQuAnswer(String quAnswer)
{
this.quAnswer = quAnswer;
}
public void setQuType(String quType)
{
this.quType = quType;
}
public int getId()
{
return this.id;
}
public String getQuTitle()
{
return this.quTitle;
}
public String getQuHard()
{
return this.quHard;
}
public String getQuScore()
{
return this.quScore;
}
public String getQuAnswer()
{
return this.quAnswer;
}
public String getQuType()
{
return this.quType;
}
public ExamType getExamType()
{
return this.examType;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -