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

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.     public ActionErrors validate(ActionMapping actionMapping,
  17.                                  HttpServletRequest httpServletRequest) {
  18.         /** @todo: finish this method, this is just the skeleton.*/
  19.         return null;
  20.     }
  21.     public void reset(ActionMapping actionMapping,
  22.                       HttpServletRequest servletRequest) {
  23.     }
  24.     public String getContent() {
  25.         return content;
  26.     }
  27.     public String getTitle() {
  28.         return title;
  29.     }
  30.     public Long getId() {
  31.         return id;
  32.     }
  33.     public String getKey() {
  34.         return key;
  35.     }
  36.     public Long getCatID() {
  37.         return catID;
  38.     }
  39.     public Long getMenuID() {
  40.         return menuID;
  41.     }
  42.     public Long getImageID() {
  43.         return imageID;
  44.     }
  45.     public FormFile getInformationImage() {
  46.         return informationImage;
  47.     }
  48.     public void setContent(String content) {
  49.         this.content = content;
  50.     }
  51.     public void setTitle(String title) {
  52.         this.title = title;
  53.     }
  54.     public void setId(Long id) {
  55.         this.id = id;
  56.     }
  57.     public void setKey(String key) {
  58.         this.key = key;
  59.     }
  60.     public void setCatID(Long catID) {
  61.         this.catID = catID;
  62.     }
  63.     public void setMenuID(Long menuID) {
  64.         this.menuID = menuID;
  65.     }
  66.     public void setImageID(Long imageID) {
  67.         this.imageID = imageID;
  68.     }
  69.     public void setInformationImage(FormFile informationImage) {
  70.         this.informationImage = informationImage;
  71.     }
  72. }