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

📄 querydetailform.java

📁 一个很适合初学者的网上书店系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.ascent.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: 07-09-2007
 * 
 * XDoclet definition:
 * 
 * @struts.form name="querydetailForm"
 */
public class QueryDetailForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** describe property */
	private String describe;

	/** book_name property */
	private String bookName;

	/** image property */
	private String image;

	/** book_id property */
	private String bookId;

	/** book_author property */
	private String bookAuthor;

	/** book_price property */
	private String bookPrice;

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

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

	/**
	 * Returns the book_name.
	 * 
	 * @return String
	 */
	public String getBookName() {
		return bookName;
	}

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

	/**
	 * Returns the image.
	 * 
	 * @return String
	 */
	public String getImage() {
		return image;
	}

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

	/**
	 * Returns the book_id.
	 * 
	 * @return String
	 */
	public String getBookId() {
		return bookId;
	}

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

	/**
	 * Returns the book_author.
	 * 
	 * @return String
	 */
	public String getBookAuthor() {
		return bookAuthor;
	}

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

	/**
	 * Returns the book_price.
	 * 
	 * @return String
	 */
	public String getBookPrice() {
		return bookPrice;
	}

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

⌨️ 快捷键说明

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