Back to project page lffl-feed-reader.
The source code is released under:
GNU General Public License
If you think the Android project lffl-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.lfflfeedreader.domparser; //w ww .ja va 2 s. c o m import java.io.Serializable; import java.util.List; import java.util.Vector; public class RSSFeed implements Serializable { private static final long serialVersionUID = 1L; private int _itemcount = 0; private List<RSSItem> _itemlist; RSSFeed() { _itemlist = new Vector<RSSItem>(0); } void addItem(RSSItem item) { _itemlist.add(item); _itemcount++; } public RSSItem getItem(int location) { return _itemlist.get(location); } public int getItemCount() { return _itemcount; } }