SearcherForm.java
上传用户:zhihansy
上传日期:2014-12-04
资源大小:7241k
文件大小:2k
源码类别:

搜索引擎

开发平台:

Java

  1. /*
  2.  * Generated by MyEclipse Struts
  3.  * Template path: templates/java/JavaClass.vtl
  4.  */
  5. package com.struts.form;
  6. import javax.servlet.http.HttpServletRequest;
  7. import org.apache.struts.action.ActionErrors;
  8. import org.apache.struts.action.ActionForm;
  9. import org.apache.struts.action.ActionMapping;
  10. /** 
  11.  * MyEclipse Struts
  12.  * Creation date: 03-09-2008
  13.  * 
  14.  * XDoclet definition:
  15.  * @struts.form name="searcherForm"
  16.  */
  17. public class SearcherForm extends ActionForm {
  18. /*
  19.  * Generated fields
  20.  */
  21. /** search property */
  22. private String search;
  23. private String sort;
  24. /*
  25.  * Generated Methods
  26.  */
  27.  
  28. /** 
  29.  * Method validate
  30.  * @param mapping
  31.  * @param request
  32.  * @return ActionErrors
  33.  */
  34. public ActionErrors validate(ActionMapping mapping,
  35. HttpServletRequest request) {
  36. // TODO Auto-generated method stub
  37. return null;
  38. }
  39. /** 
  40.  * Method reset
  41.  * @param mapping
  42.  * @param request
  43.  */
  44. public void reset(ActionMapping mapping, HttpServletRequest request) {
  45. // TODO Auto-generated method stub
  46. }
  47. /** 
  48.  * Returns the search.
  49.  * @return String
  50.  */
  51. public String getSearch() {
  52. return search;
  53. }
  54. /** 
  55.  * Set the search.
  56.  * @param search The search to set
  57.  */
  58. public void setSort(String sort) {
  59. this.sort = sort;
  60. }
  61. /** 
  62.  * Returns the search.
  63.  * @return String
  64.  */
  65. public String getSort() {
  66. return sort;
  67. }
  68. /** 
  69.  * Set the search.
  70.  * @param search The search to set
  71.  */
  72. public void setSearch(String search) {
  73. this.search = search;
  74. }
  75. }