Qu estion /* * To change this template, choose Tools | Templates * and open the template in the editor
*/ package ujn
entity; import java
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) { t