Back to project page robospice-minnebar-example.
The source code is released under:
Apache License
If you think the Android project robospice-minnebar-example 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.octo.android.robospice.sample.retrofit.model; /* w w w . j a v a 2s .c o m*/ import com.google.gson.annotations.Expose; import java.util.ArrayList; /** * Created by colintheshots on 4/6/14. */ public class Gist { @Expose private String id; public String getId() { return id; } public void setId(String id) { this.id = id; } @SuppressWarnings("serial") public static class AsList extends ArrayList<Gist> { } }