Back to project page cnBeta.
The source code is released under:
Apache License
If you think the Android project cnBeta 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.guest.cnbeta.module; //from w w w .j a v a 2 s . co m import android.content.Context; public class Avatar { private int id; private String topic; private String img; public Avatar(Context context) { } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getImg() { return img; } public void setImg(String img) { this.img = img; } public String getTopic() { return topic; } public void setTopic(String topic) { this.topic = topic; } }