indexdocactionform.java
来自「Spring +Web 的完整 MyEclipse 项目源码,使用者可以作为入门」· Java 代码 · 共 25 行
JAVA
25 行
package luceneActionForm;import org.apache.struts.action.*;import javax.servlet.http.*;public class indexDocActionForm extends ActionForm { private String unindexedCollection; public String getUnindexedCollection() { return unindexedCollection; } public void setUnindexedCollection(String unindexedCollection) { this.unindexedCollection = unindexedCollection; } public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { return null; } public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?