Split History column into Matches and Tourneys column.

This commit is contained in:
Me Car 2016-01-30 16:01:04 +09:00
parent fa5a098a14
commit 574e3cfd36
5 changed files with 91 additions and 90 deletions

View file

@ -39,13 +39,15 @@ public class UsersView implements Serializable {
private final String flagName;
private final String userName;
private final String history;
private final String matchHistory;
private final String tourneyHistory;
private final String infoGames;
private final String infoPing;
public UsersView(String flagName, String userName, String history, String infoGames, String infoPing) {
public UsersView(String flagName, String userName, String matchHistory, String tourneyHistory, String infoGames, String infoPing) {
this.flagName = flagName;
this.history = history;
this.matchHistory = matchHistory;
this.tourneyHistory = tourneyHistory;
this.userName = userName;
this.infoGames = infoGames;
this.infoPing = infoPing;
@ -59,8 +61,12 @@ public class UsersView implements Serializable {
return userName;
}
public String getHistory() {
return history;
public String getMatchHistory() {
return matchHistory;
}
public String getTourneyHistory() {
return tourneyHistory;
}
public String getInfoGames() {