mev-4.0.01/source/org/tigr/microarray/mev/cluster/algorithm/impl/util/IntComparator.java

Code
Comments
Other
Rev Date Author Line
2 26 Feb 07 jari 1 /*
2 26 Feb 07 jari 2 Copyright @ 1999-2003, The Institute for Genomic Research (TIGR).
2 26 Feb 07 jari 3 All rights reserved.
2 26 Feb 07 jari 4 */
2 26 Feb 07 jari 5 /*
2 26 Feb 07 jari 6  * $RCSfile: IntComparator.java,v $
2 26 Feb 07 jari 7  * $Revision: 1.3 $
2 26 Feb 07 jari 8  * $Date: 2005/03/10 15:45:30 $
2 26 Feb 07 jari 9  * $Author: braistedj $
2 26 Feb 07 jari 10  * $State: Exp $
2 26 Feb 07 jari 11  */
2 26 Feb 07 jari 12 package org.tigr.microarray.mev.cluster.algorithm.impl.util; 
2 26 Feb 07 jari 13
2 26 Feb 07 jari 14 public interface IntComparator {
2 26 Feb 07 jari 15     /** 
2 26 Feb 07 jari 16     * Returns a negative integer, zero, or a positive integer as the
2 26 Feb 07 jari 17     * first argument is less than, equal to, or greater than the second. 
2 26 Feb 07 jari 18     */
2 26 Feb 07 jari 19     int compare(int index1, int index2);
2 26 Feb 07 jari 20 }