1 // You can redistribute this software and/or modify it under the terms of 2 // the Ozone Library License version 1 published by ozone-db.org. 3 // 4 // This file is 5 // Copyright (C) 2002-@year@ Leo Mekenkamp. All rights reserved. 6 // $Id$ 7 package org.ozoneDB.collections; 8 9 import java.util.Comparator; 10 import java.io.Serializable; 11 12 /** 13 * <p>This interface is nothing more than a combination of the <code>Serializable</code> 14 * and the <code>Comparator</code> interface.</p> 15 * <p>Use this method for anonymous <code>Comparator</code> inner classes that 16 * are to be used in combination with ozone aware collections.</p> 17 * 18 * @author <a HREF="mailto:ozoneATmekenkampD0Tcom">Leo Mekenkamp (mind the anti-sp@m)</a> 19 */ 20 public interface OzoneComparator extends Comparator, Serializable { 21 22 }