📄 userlogoform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.accp.struts.form;
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: 09-05-2007
*
* XDoclet definition:
* @struts.form name="userLogoForm"
*/
public class UserLogoForm extends ActionForm {
/*
* Generated fields
*/
/** password property */
private String password;
/** user_id property */
private int user_id;
/** user_name property */
private String user_name;
/** privil property */
private String privil;
/*
* 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 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 user_id.
* @return String
*/
public int getUser_id() {
return user_id;
}
/**
* Set the user_id.
* @param user_id The user_id to set
*/
public void setUser_id(int user_id) {
this.user_id = user_id;
}
/**
* Returns the user_name.
* @return String
*/
public String getUser_name() {
return user_name;
}
/**
* Set the user_name.
* @param user_name The user_name to set
*/
public void setUser_name(String user_name) {
this.user_name = user_name;
}
/**
* Returns the privil.
* @return String
*/
public String getPrivil() {
return privil;
}
/**
* Set the privil.
* @param privil The privil to set
*/
public void setPrivil(String privil) {
this.privil = privil;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -