Back to project page SimpleReader.
The source code is released under:
Apache License
If you think the Android project SimpleReader 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.dreamteam.app.entity; /*from ww w. j av a2 s.co m*/ public class Feed { private String title; private String url; private int selectStatus; // 0:no selected 1:selected public Feed() {} public Feed(String title, String url) { this(title, url, 0); } public Feed(String title, String url, int selectStatus) { this.title = title; this.url = url; this.selectStatus = selectStatus; } @Override public String toString() { return "title:" + title + ",url:" + url + ",selectStatus:" + selectStatus; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public boolean isSelected() { if(selectStatus == 1) return true; return false; } public void setSelectStatus(int selectStatus) { this.selectStatus = selectStatus; } public int getSelectStatus() { return selectStatus; } }