📄 userform.java
字号:
//Created by MyEclipse Struts
// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xsl
package com.example.web.actionform;
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: 02-01-2007
*
* XDoclet definition:
* @struts.form name="userForm"
*/
public class UserForm extends ActionForm {
// --------------------------------------------------------- Instance Variables
/** officeTel property */
private String officeTel;
/** sex property */
private String sex;
/** password property */
private String passWord;
/** userName property */
private String userName;
/** memo property */
private String memo;
/** mobile property */
private String mobile;
/** userId property */
private String userId;
/** account property */
private String account;
/** position property */
private String position;
/** roleId property */
private String roleId;
/** homeTel property */
private String homeTel;
/** deptId property */
private String deptId;
/** status property */
private String status;
/** unitId property */
private String unitId;
// --------------------------------------------------------- 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 officeTel.
* @return String
*/
public String getOfficeTel() {
return officeTel;
}
/**
* Set the officeTel.
* @param officeTel The officeTel to set
*/
public void setOfficeTel(String officeTel) {
this.officeTel = officeTel;
}
/**
* Returns the sex.
* @return String
*/
public String getSex() {
return sex;
}
/**
* Set the sex.
* @param sex The sex to set
*/
public void setSex(String sex) {
this.sex = sex;
}
/**
* Returns the password.
* @return String
*/
public String getPassWord() {
return passWord;
}
/**
* Set the password.
* @param password The password to set
*/
public void setPassWord(String passWord) {
this.passWord = passWord;
}
/**
* 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;
}
/**
* Returns the memo.
* @return String
*/
public String getMemo() {
return memo;
}
/**
* Set the memo.
* @param memo The memo to set
*/
public void setMemo(String memo) {
this.memo = memo;
}
/**
* Returns the mobile.
* @return String
*/
public String getMobile() {
return mobile;
}
/**
* Set the mobile.
* @param mobile The mobile to set
*/
public void setMobile(String mobile) {
this.mobile = mobile;
}
/**
* Returns the userId.
* @return String
*/
public String getUserId() {
return userId;
}
/**
* Set the userId.
* @param userId The userId to set
*/
public void setUserId(String userId) {
this.userId = userId;
}
/**
* Returns the account.
* @return String
*/
public String getAccount() {
return account;
}
/**
* Set the account.
* @param account The account to set
*/
public void setAccount(String account) {
this.account = account;
}
/**
* Returns the position.
* @return String
*/
public String getPosition() {
return position;
}
/**
* Set the position.
* @param position The position to set
*/
public void setPosition(String position) {
this.position = position;
}
/**
* Returns the roleId.
* @return String
*/
public String getRoleId() {
return roleId;
}
/**
* Set the roleId.
* @param roleId The roleId to set
*/
public void setRoleId(String roleId) {
this.roleId = roleId;
}
/**
* Returns the homeTel.
* @return String
*/
public String getHomeTel() {
return homeTel;
}
/**
* Set the homeTel.
* @param homeTel The homeTel to set
*/
public void setHomeTel(String homeTel) {
this.homeTel = homeTel;
}
/**
* Returns the deptId.
* @return String
*/
public String getDeptId() {
return deptId;
}
/**
* Set the deptId.
* @param deptId The deptId to set
*/
public void setDeptId(String deptId) {
this.deptId = deptId;
}
/**
* Returns the status.
* @return String
*/
public String getStatus() {
return status;
}
/**
* Set the status.
* @param status The status to set
*/
public void setStatus(String status) {
this.status = status;
}
/**
* Returns the unitId.
* @return String
*/
public String getUnitId() {
return unitId;
}
/**
* Set the unitId.
* @param unitId The unitId to set
*/
public void setUnitId(String unitId) {
this.unitId = unitId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -