inputformwithemail.java
来自「电子时钟的java源程序」· Java 代码 · 共 40 行
JAVA
40 行
/*
* Created on Jul 24, 2003
*/
package strutsbook;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
/**
* @author rhightower
*
*/
public class InputFormWithEmail extends InputFormWithBirthDate {
private String email;
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
return super.validate(mapping, request);
}
/**
* @return
*/
public String getEmail() {
return email;
}
/**
* @param string
*/
public void setEmail(String string) {
email = string;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?