Back to project page RSS-Steam.
The source code is released under:
Apache License
If you think the Android project RSS-Steam 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.jddmxgg.ofertassteam; /*from w w w .j av a 2 s. c om*/ /** * A representation of an rss item from the list. * * @author Veaceslav Grec * */ public class RssItem { private final String mTitle; private final String mLink; private final String mDescription; private final String mMonth; private final String mDay; private String mColor; public RssItem(String title, String link, String description, String month, String day, String color) { mTitle = title; mLink = link; mDescription = description; mMonth = month; mDay = day; mColor = color; } public String getTitle() { return mTitle; } public String getLink() { return mLink; } public String getDescription() { return mDescription; } public String getMonth() { return mMonth; } public String getDay() { return mDay; } public String getColor() { return mColor; } public void setColor(String color) { mColor = color; } }