ylhq1_dtps_d1form.java

来自「这个程序是花了好几十万请人开发的」· Java 代码 · 共 70 行

JAVA
70
字号
// Created by Xslt generator for Eclipse.// XSL :  not found (java.io.FileNotFoundException:  (No such file or directory))// Default XSL used : easystruts.jar$org.easystruts.xslgen.JavaClass.xslpackage struts.form;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/**  * Ylhq1_dtps_d1Form.java created by EasyStruts - XsltGen. * http://easystruts.sf.net * created on 10-20-2004 *  * XDoclet definition: * @struts:form name="ylhq1_dtps_d1Form" */public class Ylhq1_dtps_d1Form extends ActionForm {	// --------------------------------------------------------- Instance Variables	// --------------------------------------------------------- Methods	private String table;	private int id;		public void setid(int id)	{		this.id=id;	}	public int getid()	{		return this.id;	}		public void settable(String table)	{		this.table=table;	}	public String gettable()	{		return this.table;	}	/** 	 * Method validate	 * @param ActionMapping mapping	 * @param HttpServletRequest request	 * @return ActionErrors	 */	public ActionErrors validate(		ActionMapping mapping,		HttpServletRequest request) {		return null;		//throw new UnsupportedOperationException("Generated method 'validate(...)' not implemented.");	}	/** 	 * Method reset	 * @param ActionMapping mapping	 * @param HttpServletRequest request	 */	public void reset(ActionMapping mapping, HttpServletRequest request) {		this.table="";	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?