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