Back to project page xda-feed-reader.
The source code is released under:
GNU General Public License
If you think the Android project xda-feed-reader 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.iven.xdafeedreader.domparser; //from w w w . ja v a 2s.c om import java.io.Serializable; public class RSSItem implements Serializable { private static final long serialVersionUID = 1L; private String item_title = null; private String item_desc = null; private String item_date = null; private String item_image = null; void setTitle(String title) { item_title = title; } void setDescription(String description) { item_desc = description; } void setDate(String pubdate) { item_date = pubdate; } void setImage(String image) { item_image = image; } public String getTitle() { return item_title; } public String getDescription() { return item_desc; } public String getDate() { return item_date; } public String getImage() { return item_image; } }