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