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