HintForm.java
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:3k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. //Created by MyEclipse Struts
  2. // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
  3. package com.oa.module.hints;
  4. import javax.servlet.http.HttpServletRequest;
  5. import org.apache.struts.action.ActionErrors;
  6. import org.apache.struts.action.ActionForm;
  7. import org.apache.struts.action.ActionMapping;
  8. /** 
  9.  * MyEclipse Struts
  10.  * Creation date: 01-26-2008
  11.  * 
  12.  * XDoclet definition:
  13.  * @struts.form name="hintForm"
  14.  */
  15. public class HintForm extends ActionForm {
  16. // --------------------------------------------------------- Instance Variables
  17.      private String uno;
  18.      private String hshowtype;
  19.      private String hshowtime;
  20.      private String haffair;
  21.      private String hmeeting;
  22.      private String hemail;
  23.      private String hmemo;
  24. // --------------------------------------------------------- Methods
  25. public String getHaffair() {
  26. return haffair;
  27. }
  28. public void setHaffair(String haffair) {
  29. this.haffair = haffair;
  30. }
  31. public String getHemail() {
  32. return hemail;
  33. }
  34. public void setHemail(String hemail) {
  35. this.hemail = hemail;
  36. }
  37. public String getHmeeting() {
  38. return hmeeting;
  39. }
  40. public void setHmeeting(String hmeeting) {
  41. this.hmeeting = hmeeting;
  42. }
  43. public String getHmemo() {
  44. return hmemo;
  45. }
  46. public void setHmemo(String hmemo) {
  47. this.hmemo = hmemo;
  48. }
  49. public String getHshowtime() {
  50. return hshowtime;
  51. }
  52. public void setHshowtime(String hshowtime) {
  53. this.hshowtime = hshowtime;
  54. }
  55. public String getHshowtype() {
  56. return hshowtype;
  57. }
  58. public void setHshowtype(String hshowtype) {
  59. this.hshowtype = hshowtype;
  60. }
  61. public String getUno() {
  62. return uno;
  63. }
  64. public void setUno(String uno) {
  65. this.uno = uno;
  66. }
  67. /** 
  68.  * Method validate
  69.  * @param mapping
  70.  * @param request
  71.  * @return ActionErrors
  72.  */
  73. public ActionErrors validate(
  74. ActionMapping mapping,
  75. HttpServletRequest request) {
  76. // TODO Auto-generated method stub
  77. return null;
  78. }
  79. /** 
  80.  * Method reset
  81.  * @param mapping
  82.  * @param request
  83.  */
  84. public void reset(ActionMapping mapping, HttpServletRequest request) {
  85.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
  86. }
  87. }