choice.java
来自「远程电子考试系统」· Java 代码 · 共 44 行
JAVA
44 行
package fangsoft.testcenter.model;
public class Choice {
private String text;
/**
* Constructor for choice
*
*/
public Choice() {
// TODO Auto-generated constructor stub
super();
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
private boolean correct;
public boolean isCorrect() {
return correct;
}
public void setCorrect(boolean correct) {
this.correct = correct;
}
private boolean picked;
public boolean getPicked() {
return picked;
}
public void setPicked(boolean picked) {
this.picked = picked;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?