QuestionForm.java
上传用户:nbxinmin
上传日期:2021-10-09
资源大小:46k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Java

  1. package com.xdf.exams.web.form;
  2. import javax.servlet.http.HttpServletRequest;
  3. import org.apache.struts.action.ActionErrors;
  4. import org.apache.struts.action.ActionForm;
  5. import org.apache.struts.action.ActionMapping;
  6. /** 
  7.  * MyEclipse Struts
  8.  * Creation date: 04-06-2007
  9.  * 
  10.  * XDoclet definition:
  11.  * @struts.form name="questionForm"
  12.  */
  13. public class QuestionForm extends ActionForm {
  14. private Long subjectid;
  15. private Long questionid;
  16. private String content;
  17. private int score = 1;
  18. private int qtype;
  19. private String[] options = new String[8];
  20. private String[] rightanswers =  new String[8];
  21. public String[] getRightanswers() {
  22. return rightanswers;
  23. }
  24. public void setRightanswers(String[] rightanswers) {
  25. this.rightanswers = rightanswers;
  26. }
  27. public String[] getOptions() {
  28. return options;
  29. }
  30. public void setOptions(String[] options) {
  31. this.options = options;
  32. }
  33. public int getQtype() {
  34. return qtype;
  35. }
  36. public void setQtype(int qtype) {
  37. this.qtype = qtype;
  38. }
  39. public int getScore() {
  40. return score;
  41. }
  42. public void setScore(int score) {
  43. this.score = score;
  44. }
  45. public Long getSubjectid() {
  46. return subjectid;
  47. }
  48. public void setSubjectid(Long subjectid) {
  49. this.subjectid = subjectid;
  50. }
  51. /** 
  52.  * Method validate
  53.  * @param mapping
  54.  * @param request
  55.  * @return ActionErrors
  56.  */
  57. public ActionErrors validate(ActionMapping mapping,
  58. HttpServletRequest request) {
  59. // TODO Auto-generated method stub
  60. return null;
  61. }
  62. /** 
  63.  * Method reset
  64.  * @param mapping
  65.  * @param request
  66.  */
  67. public void reset(ActionMapping mapping, HttpServletRequest request) {
  68. // TODO Auto-generated method stub
  69. }
  70. public String getContent() {
  71. return content;
  72. }
  73. public void setContent(String content) {
  74. this.content = content;
  75. }
  76. public Long getQuestionid() {
  77. return questionid;
  78. }
  79. public void setQuestionid(Long questionid) {
  80. this.questionid = questionid;
  81. }
  82. }