KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > collections > OzoneComparator


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 JavaDoc;
10 import java.io.Serializable JavaDoc;
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 JavaDoc, Serializable JavaDoc {
21     
22 }
Popular Tags