?? jfform.java
字號(hào):
package org.helpsoft.contract.struts.forms;
import java.math.*;
import java.text.*;
import org.apache.struts.action.*;
import javax.servlet.http.HttpServletRequest;
import org.helpsoft.contract.dto.*;
public class JfForm extends ActionForm
{
private String jfbm;
private String jfmc;
private String crudMethod;
/**
* Sets the value of jfbm
*/
public void setJfbm(String jfbm)
{
this.jfbm = jfbm;
}
/**
* Gets the value of jfbm
*/
public String getJfbm()
{
return jfbm;
}
/**
* Sets the value of jfmc
*/
public void setJfmc(String jfmc)
{
this.jfmc = jfmc;
}
/**
* Gets the value of jfmc
*/
public String getJfmc()
{
return jfmc;
}
/**
* Sets the value of crudMethod
*/
public void setCrudMethod(String crudMethod)
{
this.crudMethod = crudMethod;
}
/**
* Gets the value of crudMethod
*/
public String getCrudMethod()
{
return crudMethod;
}
/**
* method'reset'
*
*/
public void reset()
{
jfbm = "";
jfmc = "";
}
/**
* method'validate'
*
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
{
ActionErrors _errors = new ActionErrors();
return _errors;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -