www.pudn.com > JSP2Struts.rar > LookupForm.java


package com; 
 
import javax.servlet.http.HttpServletRequest; 
import org.apache.struts.action.ActionForm; 
import org.apache.struts.action.ActionMapping; 
 
public class LookupForm extends ActionForm 
{ 
    private String bookType; 
 
    public String getBookType() 
    { 
        return (this.bookType); 
    } 
    public void setBookType(String bookType) 
    {	 
        this.bookType = bookType; 
    } 
    public void reset(ActionMapping mapping,HttpServletRequest request) 
    { 
        this.bookType = null; 
    } 
}