Back to project page lastUpdates.
The source code is released under:
GNU General Public License
If you think the Android project lastUpdates 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.focusings.focusingsworld; //from w w w. ja va2 s . c o m import java.util.Date; public class VideoInfo { private String url; private Date publishingDate; public VideoInfo(String url,Date publishingDate) { this.url=url; this.publishingDate=publishingDate; } public String getUrl() { return url; } public Date getPublishingDate() { return publishingDate; } public void setUrl(String url) { this.url=url; } public void setPublishingDate(Date publishingDate) { this.publishingDate=publishingDate; } }