📄 catalogactionform.java
字号:
package com.gctech.sms.voice.web;import org.apache.struts.action.*;import javax.servlet.http.*;public class CatalogActionForm extends ActionForm{ private Integer smallType; private Integer pageOffset; private Integer bigType; public Integer getBigType() { return bigType; } public void setBigType(Integer bType) { this.bigType = bType; } public Integer getSmallType() { return smallType; } public void setSmallType(Integer sType) { this.smallType = sType; } 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 Integer getPageOffset() { return pageOffset; } public void setPageOffset(Integer pageOffset) { this.pageOffset = pageOffset; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -