📄 userloginform.java
字号:
// Created by Xslt generator for Eclipse.
// XSL : not found (java.io.FileNotFoundException: (Bad file descriptor))
// Default XSL used : easystruts.jar$org.easystruts.xslgen.JavaClass.xsl
package com.ahbay.struts.form;
import org.apache.struts.action.ActionForm;
/**
* UserloginForm.java created by EasyStruts - XsltGen.
* http://easystruts.sf.net
* created on 05-07-2005
*
* XDoclet definition:
* @struts:form name="userloginForm"
*/
public class UserloginForm extends ActionForm {
// --------------------------------------------------------- Instance Variables
/** password property */
private String password;
/** uid property */
private String uid;
// --------------------------------------------------------- Methods
/**
* 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 uid.
* @return String
*/
public String getUid() {
return uid;
}
/**
* Set the uid.
* @param uid The uid to set
*/
public void setUid(String uid) {
this.uid = uid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -