Back to project page octodroid.
The source code is released under:
MIT License
If you think the Android project octodroid 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.rejasupotaro.octodroid.models; /* w ww.ja va 2 s .c o m*/ import com.google.gson.annotations.SerializedName; public class Subject extends Resource { @SerializedName("title") private String title; @SerializedName("url") private String url; @SerializedName("latest_comment_url") private String latestCommentUrl; @SerializedName("type") private String type; public String getTitle() { return title; } public String getUrl() { return url; } public String getLatestCommentUrl() { return latestCommentUrl; } public String getType() { return type; } }