MenuActionForm.java~8~
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:1k
源码类别:

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 MenuActionForm extends ActionForm {
  6.     private Long id = new Long(0);
  7.     private String name;
  8.     private String order;
  9.     private FormFile menuImg = null;
  10.     private Long imageID = new Long(0);
  11.     public ActionErrors validate(ActionMapping actionMapping,
  12.                                  HttpServletRequest httpServletRequest) {
  13.         /** @todo: finish this method, this is just the skeleton.*/
  14.         return null;
  15.     }
  16.     public void reset(ActionMapping actionMapping,
  17.                       HttpServletRequest servletRequest) {
  18.     }
  19.     public Long getId() {
  20.         return id;
  21.     }
  22.     public FormFile getMenuImg() {
  23.         return menuImg;
  24.     }
  25.     public String getName() {
  26.         return name;
  27.     }
  28.     public String getOrder() {
  29.         return order;
  30.     }
  31.     public void setId(Long id) {
  32.         this.id = id;
  33.     }
  34.     public void setMenuImg(FormFile menuImg) {
  35.         this.menuImg = menuImg;
  36.     }
  37.     public void setName(String name) {
  38.         this.name = name;
  39.     }
  40.     public void setOrder(String order) {
  41.         this.order = order;
  42.     }
  43. }