blob: 8cb1c92af51783594e6624cc5faf1d6f5aa64cd8 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 2002-2003, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/dev/tool/localeconverter/Comparator.java,v $
* $Date: 2003/12/20 03:06:59 $
* $Revision: 1.3 $
*
*****************************************************************************************
*/
package com.ibm.icu.dev.tool.localeconverter;
public interface Comparator {
/**
returns 0 if objects are equal, -1 if a is less than b, 1 otherwise.
*/
public int compare(Object a, Object b);
}