jinyongactionform.java~2~

来自「Bug管理系统」· JAVA~2~ 代码 · 共 47 行

JAVA~2~
47
字号
package tmp;

import javax.servlet.http.*;

import org.apache.struts.action.*;

public class jinyongActionForm extends ActionForm {
    public jinyongActionForm() {
        try {
            jbInit();
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }

    private String jinyongzhi;
    private String yonghuid;
    public String getJinyongzhi() {
        return jinyongzhi;
    }

    public String getYonghuid() {
        return yonghuid;
    }

    public void setJinyongzhi(String jinyongzhi) {
        this.jinyongzhi = jinyongzhi;
    }

    public void setYonghuid(String yonghuid) {
        this.yonghuid = yonghuid;
    }

    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) {
    }

    private void jbInit() throws Exception {
    }
}

⌨️ 快捷键说明

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