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