?? user.java
字號(hào):
package org.jsfeimhe.web.bean;
import java.util.Locale;
public class User {
private String userName;
private String password;
private int math=85;
private int chinese=85;
private Locale locale=new Locale("en");
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String verifyUser(){
System.out.println("User::verifyUser is called");
if(this.userName.equals("zhengjingyu")){
return "success";
}else{
return "failure";
}
}
public int getChinese() {
return chinese;
}
public void setChinese(int chinese) {
this.chinese = chinese;
}
public int getMath() {
return math;
}
public void setMath(int math) {
this.math = math;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Locale getLocale() {
return locale;
}
public void setLocale(Locale locale) {
this.locale = locale;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -