DownLoadActionForm.java~1~
上传用户: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 DownLoadActionForm extends ActionForm {
  6.     private Long id = new Long(0);
  7.     private String cnTitle;
  8.     private FormFile downLoadImg = null;
  9.     private Long imageID = new Long(0);
  10.     private String summary;
  11.     private FormFile image = null;
  12.     private Long fileID = null;
  13.     private Long order;
  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 getCnTitle() {
  23.         return cnTitle;
  24.     }
  25.     public FormFile getDownLoadImg() {
  26.         return downLoadImg;
  27.     }
  28.     public Long getId() {
  29.         return id;
  30.     }
  31.     public Long getImageID() {
  32.         return imageID;
  33.     }
  34.     public FormFile getImage() {
  35.         return image;
  36.     }
  37.     public String getSummary() {
  38.         return summary;
  39.     }
  40.     public Long getFileID() {
  41.         return fileID;
  42.     }
  43.     public Long getOrder() {
  44.         return order;
  45.     }
  46.     public void setCnTitle(String cnTitle) {
  47.         this.cnTitle = cnTitle;
  48.     }
  49.     public void setDownLoadImg(FormFile downLoadImg) {
  50.         this.downLoadImg = downLoadImg;
  51.     }
  52.     public void setId(Long id) {
  53.         this.id = id;
  54.     }
  55.     public void setImageID(Long imageID) {
  56.         this.imageID = imageID;
  57.     }
  58.     public void setImage(FormFile image) {
  59.         this.image = image;
  60.     }
  61.     public void setSummary(String summary) {
  62.         this.summary = summary;
  63.     }
  64.     public void setFileID(Long fileID) {
  65.         this.fileID = fileID;
  66.     }
  67.     public void setOrder(Long order) {
  68.         this.order = order;
  69.     }
  70. }