LinkActionForm.java~3~
资源名称:shihua.rar [点击查看]
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:1k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- package com.chinacannel.xlchemical.struts.ActionForm;
- import javax.servlet.http.*;
- import org.apache.struts.action.*;
- public class LinkActionForm extends ActionForm {
- private Long linkID = new Long(0);
- private String CName;
- private String EName;
- private String url;
- private Long type = new Long(0);
- public ActionErrors validate(ActionMapping actionMapping,
- HttpServletRequest httpServletRequest) {
- /** @todo: finish this method, this is just the skeleton.*/
- return null;
- }
- public void reset(ActionMapping actionMapping,
- HttpServletRequest servletRequest) {
- }
- public String getCName() {
- return CName;
- }
- public void setCName(String CName) {
- this.CName = CName;
- }
- public String getEName() {
- return EName;
- }
- public void setEName(String EName) {
- this.EName = EName;
- }
- public Long getLinkID() {
- return linkID;
- }
- public String getUrl() {
- return url;
- }
- public Long getType() {
- return type;
- }
- public void setLinkID(Long linkID) {
- this.linkID = linkID;
- }
- public void setUrl(String url) {
- this.url = url;
- }
- public void setType(Long type) {
- this.type = type;
- }
- }