Android Open Source - RSS-Steam Rss Item






From Project

Back to project page RSS-Steam.

License

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.

Java Source Code

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;
  }
}




Java Source Code List

com.jddmxgg.ofertassteam.AboutUsActivity.java
com.jddmxgg.ofertassteam.Constants.java
com.jddmxgg.ofertassteam.DescriptionActivity.java
com.jddmxgg.ofertassteam.ExpandibleListViewAdapter.java
com.jddmxgg.ofertassteam.MainActivity.java
com.jddmxgg.ofertassteam.RssAdapter.java
com.jddmxgg.ofertassteam.RssFragment.java
com.jddmxgg.ofertassteam.RssItem.java
com.jddmxgg.ofertassteam.RssParser.java
com.jddmxgg.ofertassteam.RssService.java
com.jddmxgg.ofertassteam.SQLiteHelper.java
com.jddmxgg.ofertassteam.SimpleGestureFilter.java