BookTypeForm.java~1~
上传用户:toby828
上传日期:2015-06-26
资源大小:8558k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.actionForm;
  2. import org.apache.struts.action.ActionForm;
  3. import org.apache.struts.action.ActionErrors;
  4. import org.apache.struts.action.ActionMapping;
  5. import javax.servlet.http.HttpServletRequest;
  6. public class BookTypeForm extends ActionForm {
  7.     private String code;
  8.     private Integer days;
  9.     private Integer id;
  10.     private String typeName;
  11.     public String getCode() {
  12.         return code;
  13.     }
  14.     public void setCode(String code) {
  15.         this.code = code;
  16.     }
  17.     public void setTypeName(String typeName) {
  18.         this.typeName = typeName;
  19.     }
  20.     public void setId(Integer id) {
  21.         this.id = id;
  22.     }
  23.     public void setDays(Integer days) {
  24.         this.days = days;
  25.     }
  26.     public Integer getDays() {
  27.         return days;
  28.     }
  29.     public Integer getId() {
  30.         return id;
  31.     }
  32.     public String getTypeName() {
  33.         return typeName;
  34.     }
  35.     public ActionErrors validate(ActionMapping actionMapping,
  36.                                  HttpServletRequest httpServletRequest) {
  37.             /** @todo: finish this method, this is just the skeleton.*/
  38.         return null;
  39.     }
  40.     public void reset(ActionMapping actionMapping,
  41.                       HttpServletRequest servletRequest) {
  42.     }
  43. }