Back to project page 101AndroidApps.
The source code is released under:
Licenced under the Creative Commons Attribution 4.0 licence. For full text see http://creativecommons.org/licenses/by/4.0/
If you think the Android project 101AndroidApps 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.hulzenga.ioi.android.app_008; /*ww w. ja v a 2s. c o m*/ class OverheidFeedItem { private String mTitle; private String mLink; private String mPubDate; private String mDescription; public OverheidFeedItem(String title, String link, String pubDate, String description) { mTitle = title; mLink = link; mPubDate = pubDate; mDescription = description; } public String getTitle() { return mTitle; } public String getLink() { return mLink; } public String getPubDate() { return mPubDate; } public String getDescription() { return mDescription; } }