Add show table update, add matches list creator
This commit is contained in:
@@ -20,6 +20,7 @@ public class APIFootballMatch extends BaseMatch {
|
||||
private String matchStatus;
|
||||
private final String teamNameHome;
|
||||
private final String teamNameGuest;
|
||||
private Boolean showTable = null;
|
||||
|
||||
public APIFootballMatch(JSONObject json, int season) {
|
||||
this.season = season;
|
||||
@@ -67,4 +68,12 @@ public class APIFootballMatch extends BaseMatch {
|
||||
public String getTeamNameGuest() {
|
||||
return this.teamNameGuest;
|
||||
}
|
||||
|
||||
public void setShowTable(boolean showTable) {
|
||||
this.showTable = showTable;
|
||||
}
|
||||
|
||||
public Boolean getShowTable() {
|
||||
return this.showTable;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user