tt-rss-android/src/org/fox/ttrss/Feed.java
Andrew Dolgov f976b25c1e rework authentication
base feedlist adapter on sqlite
2011-09-08 20:05:00 +04:00

19 lines
370 B
Java

package org.fox.ttrss;
public class Feed implements Comparable<Feed> {
String feed_url;
String title;
int id;
int unread;
boolean has_icon;
int cat_id;
int last_updated;
@Override
public int compareTo(Feed feed) {
if (feed.unread != this.unread)
return feed.unread - this.unread;
else
return this.title.compareTo(feed.title);
}
}