📄 testitemactionform.java
字号:
package com.huawei.icd30.agt.configmng;
/**
* Copyright 1988-2004, Huawei Tech. Co., Ltd.
* filename: TestItemActionForm.java
* description:
* date: 2004-06-09
* @author 黄育源
* @version 3.0
*
* History: // 历史修改记录
* <author> <time> <version > <desc>
*/
import org.apache.struts.action.*;
import javax.servlet.http.*;
public final class TestItemActionForm extends ActionForm {
private String testItemNum;
public void setTestItemNum(String testItemNum) {
this.testItemNum = testItemNum;
}
public String getTestItemNum() {
return testItemNum;
}
public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
/**@todo: finish this method, this is just the skeleton.*/
return null;
}
public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -