- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
UserForm.java
资源名称:Jason.rar [点击查看]
上传用户:wok5188
上传日期:2018-02-20
资源大小:1835k
文件大小:2k
源码类别:
MySQL数据库
开发平台:
Java
- /*
- * Generated by MyEclipse Struts
- * Template path: templates/java/JavaClass.vtl
- */
- package com.center.control;
- import javax.servlet.http.HttpServletRequest;
- import org.apache.struts.action.ActionErrors;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionMapping;
- /**
- * MyEclipse Struts
- * Creation date: 05-18-2007
- *
- * XDoclet definition:
- * @struts.form name="userForm"
- */
- public class UserForm extends ActionForm {
- /*
- * Generated fields
- */
- /** useremail property */
- private String useremail;
- /** userpsw property */
- private String userpsw;
- /** username property */
- private String username;
- /*
- * Generated Methods
- */
- /**
- * Method validate
- * @param mapping
- * @param request
- * @return ActionErrors
- */
- public ActionErrors validate(ActionMapping mapping,
- HttpServletRequest request) {
- // TODO Auto-generated method stub
- return null;
- }
- /**
- * Method reset
- * @param mapping
- * @param request
- */
- public void reset(ActionMapping mapping, HttpServletRequest request) {
- // TODO Auto-generated method stub
- }
- /**
- * Returns the useremail.
- * @return String
- */
- public String getUseremail() {
- return useremail;
- }
- /**
- * Set the useremail.
- * @param useremail The useremail to set
- */
- public void setUseremail(String useremail) {
- this.useremail = useremail;
- }
- /**
- * Returns the userpsw.
- * @return String
- */
- public String getUserpsw() {
- return userpsw;
- }
- /**
- * Set the userpsw.
- * @param userpsw The userpsw to set
- */
- public void setUserpsw(String userpsw) {
- this.userpsw = userpsw;
- }
- /**
- * Returns the username.
- * @return String
- */
- public String getUsername() {
- return username;
- }
- /**
- * Set the username.
- * @param username The username to set
- */
- public void setUsername(String username) {
- this.username = username;
- }
- }