?? choice.java
字號:
package fangsoft.testcenter.model;
public class Choice {
private String text;
private boolean correct;
private boolean picked;
/**
* Constructor for Choice
*/
public Choice() {
super();
}
public boolean isCorrect() {
return correct;
}
public void setCorrect(boolean correct) {
this.correct = correct;
}
public boolean isPicked() {
return picked;
}
public void setPicked(boolean picked) {
this.picked = picked;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -