LinkActionForm.java~1~
上传用户: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.     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 String getCName() {
  18.         return CName;
  19.     }
  20.     public void setCName(String CName) {
  21.         this.CName = CName;
  22.     }
  23.     public String getEName() {
  24.         return EName;
  25.     }
  26.     public void setEName(String EName) {
  27.         this.EName = EName;
  28.     }
  29.     public Long getLinkID() {
  30.         return linkID;
  31.     }
  32.     public String getUrl() {
  33.         return url;
  34.     }
  35.     public void setLinkID(Long linkID) {
  36.         this.linkID = linkID;
  37.     }
  38.     public void setUrl(String url) {
  39.         this.url = url;
  40.     }
  41. }