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; /* w w w .j a v a 2 s .c om*/ /** * ???? */ public class Comment { /** * @param message ????? * @param mail ???? * @param vpos ?????????? (1/100s?????) */ public Comment(String message, String mail, int vpos) { this.message = message; this.mail = mail; this.vpos = vpos; }; public final String message; public final String mail; public final int vpos; public int no; public String userId; public int premium; }