LeaveWordActionForm.java
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. package com.chinacannel.xlchemical.struts.ActionForm;
  2. import javax.servlet.http.*;
  3. import org.apache.struts.action.*;
  4. public class LeaveWordActionForm extends ActionForm {
  5.     private String name;
  6.     private String sex;
  7.     private String address;
  8.     private String email;
  9.     private String qq;
  10.     private String host;
  11.     private String content;
  12.     private String revert;
  13.     public ActionErrors validate(ActionMapping actionMapping,
  14.                                  HttpServletRequest httpServletRequest) {
  15.         /** @todo: finish this method, this is just the skeleton.*/
  16.         return null;
  17.     }
  18.     public void reset(ActionMapping actionMapping,
  19.                       HttpServletRequest servletRequest) {
  20.     }
  21.     public String getAddress() {
  22.         return address;
  23.     }
  24.     public String getContent() {
  25.         return content;
  26.     }
  27.     public String getEmail() {
  28.         return email;
  29.     }
  30.     public String getHost() {
  31.         return host;
  32.     }
  33.     public String getName() {
  34.         return name;
  35.     }
  36.     public String getQq() {
  37.         return qq;
  38.     }
  39.     public String getSex() {
  40.         return sex;
  41.     }
  42.     public String getRevert() {
  43.         return revert;
  44.     }
  45.     public void setAddress(String address) {
  46.         this.address = address;
  47.     }
  48.     public void setContent(String content) {
  49.         this.content = content;
  50.     }
  51.     public void setEmail(String email) {
  52.         this.email = email;
  53.     }
  54.     public void setHost(String host) {
  55.         this.host = host;
  56.     }
  57.     public void setName(String name) {
  58.         this.name = name;
  59.     }
  60.     public void setQq(String qq) {
  61.         this.qq = qq;
  62.     }
  63.     public void setSex(String sex) {
  64.         this.sex = sex;
  65.     }
  66.     public void setRevert(String revert) {
  67.         this.revert = revert;
  68.     }
  69. }