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

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 LibraryForm extends ActionForm {
  7.     private String address;
  8.     private String curator;
  9.     private String email;
  10.     private Integer id;
  11.     private String introduce;
  12.     private String libraryname;
  13.     private String tel;
  14.     private String time;
  15.     private String url;
  16.     public String getAddress() {
  17.         return address;
  18.     }
  19.     public void setAddress(String address) {
  20.         this.address = address;
  21.     }
  22.     public void setUrl(String url) {
  23.         this.url = url;
  24.     }
  25.     public void setTime(String time) {
  26.         this.time = time;
  27.     }
  28.     public void setTel(String tel) {
  29.         this.tel = tel;
  30.     }
  31.     public void setLibraryname(String libraryname) {
  32.         this.libraryname = libraryname;
  33.     }
  34.     public void setIntroduce(String introduce) {
  35.         this.introduce = introduce;
  36.     }
  37.     public void setId(Integer id) {
  38.         this.id = id;
  39.     }
  40.     public void setEmail(String email) {
  41.         this.email = email;
  42.     }
  43.     public void setCurator(String curator) {
  44.         this.curator = curator;
  45.     }
  46.     public String getCurator() {
  47.         return curator;
  48.     }
  49.     public String getEmail() {
  50.         return email;
  51.     }
  52.     public Integer getId() {
  53.         return id;
  54.     }
  55.     public String getIntroduce() {
  56.         return introduce;
  57.     }
  58.     public String getLibraryname() {
  59.         return libraryname;
  60.     }
  61.     public String getTel() {
  62.         return tel;
  63.     }
  64.     public String getTime() {
  65.         return time;
  66.     }
  67.     public String getUrl() {
  68.         return url;
  69.     }
  70.     public ActionErrors validate(ActionMapping actionMapping,
  71.                                  HttpServletRequest httpServletRequest) {
  72.             /** @todo: finish this method, this is just the skeleton.*/
  73.         return null;
  74.     }
  75.     public void reset(ActionMapping actionMapping,
  76.                       HttpServletRequest servletRequest) {
  77.     }
  78. }