001 package util; 002 003 import java.util.Comparator; 004 import java.io.Serializable; 005 006 /** 007 * A comparator that is serializable. You should implement this interface for any comparators that are used 008 * with {@link util.swing.AbstractTableModel}. 009 * 010 * @author Steffen Zschaler 011 * @version 2.0 16/07/1999 012 * @since v2.0 013 */ 014 public interface SerializableComparator<T> extends Serializable, Comparator<T> {}