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 .jav a2 s. c om*/ import io.realm.RealmObject; public class Mastery extends RealmObject{ private int rank; private long masteryId; public int getRank() { return rank; } public void setRank(int rank) { this.rank = rank; } public long getMasteryId() { return masteryId; } public void setMasteryId(long masteryId) { this.masteryId = masteryId; } }