Source code: com/fm/rss/comparator/RssItemComparator.java
1 /****************************************************************************
2 * Copyright (c) 2003 Andrew Duka | aduka@users.sourceforge.net
3 * All right reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 ****************************************************************************/
11 package com.fm.rss.comparator;
12
13 import java.util.Comparator;
14
15 /**
16 * Base class for rss items comparators
17 *
18 */
19 public abstract class RssItemComparator implements Comparator
20 {
21 public abstract int compare(Object o1, Object o2);
22 public abstract boolean equals(Object o);
23 }