queryuncheckedform.java
来自「这是一个物流管理系统」· Java 代码 · 共 85 行
JAVA
85 行
package com.xsofa.struts.form;
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
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: 04-25-2009
*
* XDoclet definition:
* @struts.form name="queryUncheckedForm"
*/
public class QueryUncheckedForm extends ActionForm {
/*
* Generated fields
*/
/** searchBy property */
private String searchBy;
/** 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 searchBy.
* @return String
*/
public String getSearchBy() {
return searchBy;
}
/**
* Set the searchBy.
* @param searchBy The searchBy to set
*/
public void setSearchBy(String searchBy) {
this.searchBy = searchBy;
}
/**
* 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 + -
显示快捷键?