Back to project page glvideoplayer-android.
The source code is released under:
Apache License
If you think the Android project glvideoplayer-android 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 net.binzume.android.nicovideo; /*from ww w .ja v a 2 s . co m*/ import java.util.List; public class MyList { public final int id; public int userId; public String name; public String description; public int createDate; public int updateDate; public int isPublic; public List<MyListEntry> items; public MyList(int id) { this.id = id; } public static class MyListEntry extends VideoInfo { public MyListEntry(String videoId, String title) { super(videoId, title); } public int threadId; public int type; public int deleted; public String lastResBody; public long createDate; public long updateDate; } }