Qu estion /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package ujn.ise.qsp.entity; import java.io.Serializable; /** * * @author Administrator */ public class Question implements Serializable { private String title; private String A; private String B; private String C; private String D; private String E; private double score; private String stdAns; private String stuAns; public Question() { } public Question(String title, String A, String B, String C, String D, String E, double score, String stdAns, String stuAns) { this.title = title; this.A = A; this.B = B; this.C = C; this.D = D; this.E = E; this.score = score; this.stdAns = stdAns; this.stuAns = stuAns; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getA() { return A; } public void setA(String A) { this.A = A; } public String getB() { return B; } public void setB(String B) { this.B = B; } public String getC() { return C; } public void setC(String C) { this.C = C; } public String getD() { return D; } public void setD(String D) { this.D = D; } public String getE() { return E; } public void setE(String E) { this.E = E; } public double getScore() { return score; } public void setScore(double score) { this.score = score; } public String getStdAns() { return stdAns; } public void setStdAns(String stdAns) { this.stdAns = stdAns; } public String getStuAns() { return stuAns; } public void setStuAns(String stuAns) { this.stuAns = stuAns; } public double check() { return 2; } } Tex t paper /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package ujn.ise.qsp.entity; i...