Back to project page UTHPortal-Android-Gradle.
The source code is released under:
MIT License
If you think the Android project UTHPortal-Android-Gradle 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.uth.uthportal.collections; /*from w w w . ja va 2 s . c om*/ import java.util.Date; public class GeneralAnnouncement { public String link; public Date date; public String title; public String html; public GeneralAnnouncement(String title, String link,Date date, String html ){ this.title = title; this.link = link; this.date = date; this.html = html; } }