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 w w w. j a v a 2s . c o m*/ import java.util.List; /** * ?????????????? * * @author Kousuke Kawahira */ public class ThreadInfo { public final long threadId; public String messageServerUrl; public boolean force184; public String ticket; public int lastRes; public boolean needsKey; public List<Comment> comments; public ThreadInfo(long threadId) { this.threadId = threadId; } }