summaryrefslogtreecommitdiff
path: root/src/org/fox/ttrss/Feed.java
blob: 1f18521bb038873b98e19751913af822338c3894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
	}
}