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

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

开发平台:

JavaScript

  1. package com.chinacannel.xlchemical.struts.ActionForm;
  2. import javax.servlet.http.*;
  3. import org.apache.struts.action.*;
  4. import org.apache.struts.upload.*;
  5. public class InformationActionForm extends ActionForm {
  6.     private String title;
  7.     private String content;
  8.     private Long id;
  9.     private String key = "";
  10.     private Long catID = new Long(0);
  11.     private Long menuID = new Long(0);
  12.     private FormFile informationImage = null;
  13.     private Long imageID = new Long(0);
  14.     private Long index = new Long(0);
  15.     private String summary;
  16.     private String condition = "";
  17.     public ActionErrors validate(ActionMapping actionMapping,
  18.                                  HttpServletRequest httpServletRequest) {
  19.         /** @todo: finish this method, this is just the skeleton.*/
  20.         return null;
  21.     }
  22.     public void reset(ActionMapping actionMapping,
  23.                       HttpServletRequest servletRequest) {
  24.     }
  25.     public String getContent() {
  26.         return content;
  27.     }
  28.     public String getTitle() {
  29.         return title;
  30.     }
  31.     public Long getId() {
  32.         return id;
  33.     }
  34.     public String getKey() {
  35.         return key;
  36.     }
  37.     public Long getCatID() {
  38.         return catID;
  39.     }
  40.     public Long getMenuID() {
  41.         return menuID;
  42.     }
  43.     public Long getImageID() {
  44.         return imageID;
  45.     }
  46.     public FormFile getInformationImage() {
  47.         return informationImage;
  48.     }
  49.     public Long getIndex() {
  50.         return index;
  51.     }
  52.     public String getSummary() {
  53.         return summary;
  54.     }
  55.     public String getCondition() {
  56.         return condition;
  57.     }
  58.     public void setContent(String content) {
  59.         this.content = content;
  60.     }
  61.     public void setTitle(String title) {
  62.         this.title = title;
  63.     }
  64.     public void setId(Long id) {
  65.         this.id = id;
  66.     }
  67.     public void setKey(String key) {
  68.         this.key = key;
  69.     }
  70.     public void setCatID(Long catID) {
  71.         this.catID = catID;
  72.     }
  73.     public void setMenuID(Long menuID) {
  74.         this.menuID = menuID;
  75.     }
  76.     public void setImageID(Long imageID) {
  77.         this.imageID = imageID;
  78.     }
  79.     public void setInformationImage(FormFile informationImage) {
  80.         this.informationImage = informationImage;
  81.     }
  82.     public void setIndex(Long index) {
  83.         this.index = index;
  84.     }
  85.     public void setSummary(String summary) {
  86.         this.summary = summary;
  87.     }
  88.     public void setCondition(String condition) {
  89.         this.condition = condition;
  90.     }
  91. }