Back to project page school-rss.
The source code is released under:
Apache License
If you think the Android project school-rss 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.elegion.rssreader; //from w ww . ja va 2s .com import org.simpleframework.xml.Element; import org.simpleframework.xml.Root; /** * @author artyom on 10/09/14. */ @Root(name = "item") public class NewsItem { @Element(name = "title") String mTitle; @Element(name = "description") String mDescription; @Element(name = "link") String mLink; @Override public String toString() { return mTitle; } }