?? querydetailform.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;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -