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