Back to project page droidcon.
The source code is released under:
Apache License
If you think the Android project droidcon 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.timehop.droidcon2014retrofitsample.data.reddit.model; /*w ww . j ava 2 s .c o m*/ public class RedditComment extends RedditSubmission { RedditObject replies; String subreddit_id; String parent_id; int controversiality; String body; String body_html; String link_id; int depth; public RedditObject getReplies() { return replies; } public String getSubredditId() { return subreddit_id; } public String getParentId() { return parent_id; } public int getControversiality() { return controversiality; } public String getBody() { return body; } public String getBodyHtml() { return body_html; } public String getLinkId() { return link_id; } public int getDepth() { return depth; } public void setDepth(int depth) { this.depth = depth; } }