⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dempformform.java

📁 针对java程序编写的关于dtree的程序代码
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.xaccp.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;

/** 
 * MyEclipse Struts
 * Creation date: 04-15-2007
 * 
 * XDoclet definition:
 * @struts.form name="dempFormForm"
 */
public class DempFormForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** demp property */
	private String demp;

	/** fatherid property */
	private int fatherid;

	/** id property */
	private int id;

	/*
	 * Generated Methods
	 */

	/** 
	 * Method validate
	 * @param mapping
	 * @param request
	 * @return ActionErrors
	 */
	public ActionErrors validate(ActionMapping mapping,
			HttpServletRequest request) {
		// TODO Auto-generated method stub
		return null;
	}

	/** 
	 * Method reset
	 * @param mapping
	 * @param request
	 */
	public void reset(ActionMapping mapping, HttpServletRequest request) {
		// TODO Auto-generated method stub
	}

	/** 
	 * Returns the demp.
	 * @return String
	 */
	public String getDemp() {
		return demp;
	}

	/** 
	 * Set the demp.
	 * @param demp The demp to set
	 */
	public void setDemp(String demp) {
		this.demp = demp;
	}

	/** 
	 * Returns the fatherid.
	 * @return int
	 */
	public int getFatherid() {
		return fatherid;
	}

	/** 
	 * Set the fatherid.
	 * @param fatherid The fatherid to set
	 */
	public void setFatherid(int fatherid) {
		this.fatherid = fatherid;
	}

	/** 
	 * Returns the id.
	 * @return int
	 */
	public int getId() {
		return id;
	}

	/** 
	 * Set the id.
	 * @param id The id to set
	 */
	public void setId(int id) {
		this.id = id;
	}
}

⌨️ 快捷键说明

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