loginform.java

来自「基于struts mvc架构的jsp登录处理模块。」· Java 代码 · 共 36 行

JAVA
36
字号
/*
 * LoginForm.java
 *
 * Created on 2008年3月4日, 上午9:35
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

/**
 *
 * @author Administrator
 */
import org.apache.struts.action.*;

public class LoginForm extends ActionForm{
    private String username;
    private String password;
   
    public String getPassword()
    {return password;
    }
    public void setPassword(String password)
    {this.password=password;
    }
    public String getUsername()
    {return username;
    }
    public void setUsername(String username)
    {this.username=username;
    }
    /** Creates a new instance of LoginForm */
    
    
}

⌨️ 快捷键说明

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