Back to project page Demo-YouTuBe-Android.
The source code is released under:
Apache License
If you think the Android project Demo-YouTuBe-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.
/** *//from w ww.j a v a 2 s . co m */ package com.lqg.youtube.support.player; public class VideoId { protected String mId; public VideoId(String pId) { mId = pId; } public String getId() { return mId; } }