adminquerybookform.java

来自「eclipse+struts+sqlserver 简单图书管理系统,内有文档」· Java 代码 · 共 86 行

JAVA
86
字号
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package kignbi.dong.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: 01-30-2008
 * 
 * XDoclet definition:
 * @struts.form name="adminQueryBookForm"
 */
public class AdminQueryBookForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** searchType property */
	private String searchType;

	/** condition property */
	private String condition;

	/*
	 * 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 searchType.
	 * @return String
	 */
	public String getSearchType() {
		return searchType;
	}

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

	/** 
	 * Returns the condition.
	 * @return String
	 */
	public String getCondition() {
		return condition;
	}

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

⌨️ 快捷键说明

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