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; /*www. j a v a 2 s .c om*/ import io.realm.RealmObject; public class Rune extends RealmObject{ private int rank; private long runeId; public int getRank() { return rank; } public void setRank(int rank) { this.rank = rank; } public long getRuneId() { return runeId; } public void setRuneId(long runeId) { this.runeId = runeId; } }