loginform.java

来自「医药供应链管理系统」· Java 代码 · 共 91 行

JAVA
91
字号
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.captainli.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: 10-26-2008
 * 
 * XDoclet definition:
 * @struts.form name="loginForm"
 */
public class LoginForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	/** l_password property */
	private String l_password;

	/** l_username property */
	private String l_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 l_password.
	 * @return String
	 */
	public String getL_password() {
		return l_password;
	}

	/** 
	 * Set the l_password.
	 * @param l_password The l_password to set
	 */
	public void setL_password(String l_password) {
		this.l_password = l_password;
	}

	/** 
	 * Returns the l_username.
	 * @return String
	 */
	public String getL_username() {
		return l_username;
	}

	/** 
	 * Set the l_username.
	 * @param l_username The l_username to set
	 */
	public void setL_username(String l_username) {
		this.l_username = l_username;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?