📄 player.java
字号:
package sl314.model;
/**
* This domain object represents a player in a soccer league.
*/
public class Player {
String name = "";
String address = "";
String city = "";
String province = "";
String postalCode = "";
/**
* This is the constructor. It is package-private to prevent misuse.
* The PlayerService.getPlayer method should be used to create a
* new player object.
*/
Player(String name) {
this(name, "", "", "", "");
}
/**
* This is the full constructor.
*/
Player(String name, String address, String city,
String province, String postalCode) {
this.name = name;
this.address = address;
this.city = city;
this.province = province;
this.postalCode = postalCode;
}
public String getName() {
return name;
}
public void setName(String value) {
name = value;
}
public String getAddress() {
return address;
}
public void setAddress(String value) {
address = value;
}
public String getCity() {
return city;
}
public void setCity(String value) {
city = value;
}
public String getProvince() {
return province;
}
public void setProvince(String value) {
province = value;
}
public String getPostalCode() {
return postalCode;
}
public void setPostalCode(String value) {
postalCode = value;
}
} // END of Player class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -