deleteexamineeactionform.java
来自「在线考试系统的具体实现 利用JSP+myeclipse6.6+tomcat5。5」· Java 代码 · 共 33 行
JAVA
33 行
package org.mmxbb.exam.business.examinee;import org.apache.struts.action.*;import javax.servlet.http.*;import java.io.*;public class DeleteExamineeActionForm extends ActionForm implements Serializable { private String[] examineeList; public String[] getExamineeList() { return examineeList; } public void setExamineeList(String[] examineeList) { this.examineeList = examineeList; } 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) { this.examineeList = null; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?