Back to project page MatchHistory-League.
The source code is released under:
MIT License
If you think the Android project MatchHistory-League listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.lando.matchhistory.Models; // w w w . j a v a2 s. c o m import io.realm.RealmObject; public class Player extends RealmObject{ private int profileIcon; private String matchHistoryUri; private String summonerName; private long summonerId; public int getProfileIcon() { return profileIcon; } public void setProfileIcon(int profileIcon) { this.profileIcon = profileIcon; } public String getMatchHistoryUri() { return matchHistoryUri; } public void setMatchHistoryUri(String matchHistoryUri) { this.matchHistoryUri = matchHistoryUri; } public String getSummonerName() { return summonerName; } public void setSummonerName(String summonerName) { this.summonerName = summonerName; } public long getSummonerId() { return summonerId; } public void setSummonerId(long summonerId) { this.summonerId = summonerId; } }