shanchuceshirenyuanactionform.java

来自「Bug管理系统」· Java 代码 · 共 28 行

JAVA
28
字号
package tmp;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import javax.servlet.http.HttpServletRequest;

public class shanchuceshirenyuanActionForm extends ActionForm {
    private String ceshirenyuan;
    public String getCeshirenyuan() {
        return ceshirenyuan;
    }

    public void setCeshirenyuan(String ceshirenyuan) {
        this.ceshirenyuan = ceshirenyuan;
    }

    public ActionErrors validate(ActionMapping actionMapping,
                                 HttpServletRequest httpServletRequest) {
            /** @todo: finish this method, this is just the skeleton.*/
        return null;
    }

    public void reset(ActionMapping actionMapping,
                      HttpServletRequest servletRequest) {
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?