Back to project page RSSReader.
The source code is released under:
?????? ????? ?????? ?????? ?????????? ????????? 1.?????? ???????? ??????? ??????? ????? ?????? ????? ?????????...
If you think the Android project RSSReader 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 net.uyghurdev.avaroid.rssreader; /* w ww .j a v a 2 s . c o m*/ public class LItem { private int id; private String title; private int newItem; public LItem(){} public void setId(int id){ this.id = id; } public int getId(){ return id; } public void setTitle(String title){ this.title = title; } public String getTitle(){ return title; } public void setNewItem(int newItem){ this.newItem = newItem; } public int getNewItem(){ return newItem; } }