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

📄 favform.java

📁 一个简单的标签搜索.通过标签可以模糊查询数据.
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.fxe.dcl1.web.form;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.action.ActionMessages;

import com.fxe.dlc1.entity.Fav;

/** 
 * MyEclipse Struts
 * Creation date: 10-16-2008
 * 
 * XDoclet definition:
 * @struts.form name="favForm"
 */
public class FavForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** item property */
	private Fav item=new Fav();

	/** 
	 * Returns the item.
	 * @return Fav
	 */
	public Fav getItem() {
		return item;
	}

	/** 
	 * Set the item.
	 * @param item The item to set
	 */
	public void setItem(Fav item) {
		this.item = item;
	}
}

⌨️ 快捷键说明

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