userloginform.java
来自「java阿里巴巴代码」· Java 代码 · 共 62 行
JAVA
62 行
// 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 + =
减小字号Ctrl + -
显示快捷键?