Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/clra/util/ISerializableComparator.java


1   /*
2    * Copyright (c) Carnegie Lake Rowing Association 2002. All rights reserved.
3    * Distributed under the GPL license. See doc/COPYING.
4    * $RCSfile: ISerializableComparator.java,v $
5    * $Date: 2003/02/26 03:38:45 $
6    * $Revision: 1.3 $
7    */
8   
9   package com.clra.util;
10  
11  import java.io.Serializable;
12  import java.util.Comparator;
13  
14  /**
15   * A Comparator that can be returned over an RMI connection, among other
16   * things.
17   *
18   * @version $Revision: 1.3 $ $Date: 2003/02/26 03:38:45 $
19   * @author <a href="mailto:rphall@pluto.njcc.com">Rick Hall</a>
20   */
21  public interface ISerializableComparator extends Serializable, Comparator {}
22  
23  /*
24   * $Log: ISerializableComparator.java,v $
25   * Revision 1.3  2003/02/26 03:38:45  rphall
26   * Added copyright and GPL license
27   *
28   * Revision 1.2  2002/02/18 18:05:31  rphall
29   * Ran dos2unix to remove ^M (carriage return) from end of lines
30   *
31   * Revision 1.1.1.1  2002/01/03 21:57:28  rphall
32   * Initial load, 5th try, Jan-03-2002 4:57 PM
33   *
34   * Revision 1.1  2001/12/06 21:23:32  rphall
35   * Extension of Serializable, Comparator
36   *
37   */
38