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; //from w w w. j av a2 s . co m import io.realm.RealmObject; /** * Created by Lando on 1/28/2015. */ public class ProfileIcon extends RealmObject { private long id; private Image image; public ProfileIcon() { } public ProfileIcon(long id, Image image) { this.id = id; this.image = image; } public long getId() { return id; } public void setId(long id) { this.id = id; } public Image getImage() { return image; } public void setImage(Image image) { this.image = image; } }