📄 footballteam.java
字号:
package ar.com.koalas.test;
public class FootballTeam {
private String idCountry;
private String idTeam;
private String team;
/**
* @return Returns the idCountry.
*/
public String getIdCountry() {
return idCountry;
}
/**
* @param idCountry The idCountry to set.
*/
public void setIdCountry(String idCountry) {
this.idCountry = idCountry;
}
/**
* @return Returns the idTeam.
*/
public String getIdTeam() {
return idTeam;
}
/**
* @param idTeam The idTeam to set.
*/
public void setIdTeam(String idTeam) {
this.idTeam = idTeam;
}
/**
* @return Returns the team.
*/
public String getTeam() {
return team;
}
/**
* @param team The team to set.
*/
public void setTeam(String team) {
this.team = team;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -