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