DemoActionForm.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package demostrcuts;
  2. import org.apache.struts.action.*;
  3. import javax.servlet.http.*;
  4. public class DemoActionForm extends ActionForm {
  5.   private String 单位;
  6.   private String 地址;
  7.   private String 姓名;
  8.   public String get单位() {
  9.     return 单位;
  10.   }
  11.   public void set单位(String 单位) {
  12.     this.单位 = 单位;
  13.   }
  14.   public String get地址() {
  15.     return 地址;
  16.   }
  17.   public void set地址(String 地址) {
  18.     this.地址 = 地址;
  19.   }
  20.   public String get姓名() {
  21.     return 姓名;
  22.   }
  23.   public void set姓名(String 姓名) {
  24.     this.姓名 = 姓名;
  25.   }
  26.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  27.     /**@todo: finish this method, this is just the skeleton.*/
  28.     return null;
  29.   }
  30.   public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  31.   }
  32. }