LinkActionForm.java~3~
上传用户: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 LinkActionForm extends ActionForm {
  5.     private Long linkID = new Long(0);
  6.     private String CName;
  7.     private String EName;
  8.     private String url;
  9.     private Long type = new Long(0);
  10.     public ActionErrors validate(ActionMapping actionMapping,
  11.                                  HttpServletRequest httpServletRequest) {
  12.         /** @todo: finish this method, this is just the skeleton.*/
  13.         return null;
  14.     }
  15.     public void reset(ActionMapping actionMapping,
  16.                       HttpServletRequest servletRequest) {
  17.     }
  18.     public String getCName() {
  19.         return CName;
  20.     }
  21.     public void setCName(String CName) {
  22.         this.CName = CName;
  23.     }
  24.     public String getEName() {
  25.         return EName;
  26.     }
  27.     public void setEName(String EName) {
  28.         this.EName = EName;
  29.     }
  30.     public Long getLinkID() {
  31.         return linkID;
  32.     }
  33.     public String getUrl() {
  34.         return url;
  35.     }
  36.     public Long getType() {
  37.         return type;
  38.     }
  39.     public void setLinkID(Long linkID) {
  40.         this.linkID = linkID;
  41.     }
  42.     public void setUrl(String url) {
  43.         this.url = url;
  44.     }
  45.     public void setType(Long type) {
  46.         this.type = type;
  47.     }
  48. }