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

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

开发平台:

JavaScript

  1. package com.chinacannel.xlwell.struts.ActionForm;
  2. import javax.servlet.http.*;
  3. import org.apache.struts.action.*;
  4. public class ResumeActionForm extends ActionForm {
  5.     private String sex;
  6.     private String name;
  7.     private String birthday;
  8.     private String nativeplace;
  9.     private String polity;
  10.     private String marriage;
  11.     private String education;
  12.     private String specialty;
  13.     private String graduate;
  14.     private String experience;
  15.     private String tel;
  16.     private String address;
  17.     private String postCode;
  18.     private String power;
  19.     private String introduce;
  20.     private String email;
  21.     private String year;
  22.     private String month;
  23.     private String day;
  24.     public String getAddress() {
  25.         return address;
  26.     }
  27.     public void setAddress(String address) {
  28.         this.address = address;
  29.     }
  30.     public String getEducation() {
  31.         return education;
  32.     }
  33.     public String getExperience() {
  34.         return experience;
  35.     }
  36.     public String getGraduate() {
  37.         return graduate;
  38.     }
  39.     public String getIntroduce() {
  40.         return introduce;
  41.     }
  42.     public String getMarriage() {
  43.         return marriage;
  44.     }
  45.     public String getNativeplace() {
  46.         return nativeplace;
  47.     }
  48.     public String getPolity() {
  49.         return polity;
  50.     }
  51.     public String getPostCode() {
  52.         return postCode;
  53.     }
  54.     public String getPower() {
  55.         return power;
  56.     }
  57.     public String getSex() {
  58.         return sex;
  59.     }
  60.     public String getSpecialty() {
  61.         return specialty;
  62.     }
  63.     public String getTel() {
  64.         return tel;
  65.     }
  66.     public String getEmail() {
  67.         return email;
  68.     }
  69.     public String getName() {
  70.         return name;
  71.     }
  72.     public String getBirthday() {
  73.         return birthday;
  74.     }
  75.     public String getDay() {
  76.         return day;
  77.     }
  78.     public String getMonth() {
  79.         return month;
  80.     }
  81.     public String getYear() {
  82.         return year;
  83.     }
  84.     public void setEducation(String education) {
  85.         this.education = education;
  86.     }
  87.     public void setExperience(String experience) {
  88.         this.experience = experience;
  89.     }
  90.     public void setGraduate(String graduate) {
  91.         this.graduate = graduate;
  92.     }
  93.     public void setIntroduce(String introduce) {
  94.         this.introduce = introduce;
  95.     }
  96.     public void setMarriage(String marriage) {
  97.         this.marriage = marriage;
  98.     }
  99.     public void setNativeplace(String nativeplace) {
  100.         this.nativeplace = nativeplace;
  101.     }
  102.     public void setPolity(String polity) {
  103.         this.polity = polity;
  104.     }
  105.     public void setPostCode(String postCode) {
  106.         this.postCode = postCode;
  107.     }
  108.     public void setPower(String power) {
  109.         this.power = power;
  110.     }
  111.     public void setSex(String sex) {
  112.         this.sex = sex;
  113.     }
  114.     public void setSpecialty(String specialty) {
  115.         this.specialty = specialty;
  116.     }
  117.     public void setTel(String tel) {
  118.         this.tel = tel;
  119.     }
  120.     public void setEmail(String email) {
  121.         this.email = email;
  122.     }
  123.     public void setName(String name) {
  124.         this.name = name;
  125.     }
  126.     public void setBirthday(String birthday) {
  127.         this.birthday = birthday;
  128.     }
  129.     public void setDay(String day) {
  130.         this.day = day;
  131.     }
  132.     public void setMonth(String month) {
  133.         this.month = month;
  134.     }
  135.     public void setYear(String year) {
  136.         this.year = year;
  137.     }
  138.     public ActionErrors validate(ActionMapping actionMapping,
  139.                                  HttpServletRequest httpServletRequest) {
  140.             /** @todo: finish this method, this is just the skeleton.*/
  141.         return null;
  142.     }
  143.     public void reset(ActionMapping actionMapping,
  144.                       HttpServletRequest servletRequest) {
  145.     }
  146. }