smsregactionform.java
来自「采用JAVA开发」· Java 代码 · 共 25 行
JAVA
25 行
package com.gctech.sms.voice.web;import org.apache.struts.action.*;import javax.servlet.http.*;public class SMSRegActionForm extends ActionForm{ private String strPhone; public String getStrPhone() { return strPhone; } public void setStrPhone(String strPhone) { this.strPhone = strPhone; } 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 + =
减小字号Ctrl + -
显示快捷键?