01: /*
02: *******************************************************************************
03: * Copyright (C) 2002-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07: package com.ibm.icu.dev.tool.localeconverter;
08:
09: public interface Comparable {
10: /**
11: returns 0 if objects are equal, -1 if a is less than b, 1 otherwise.
12: */
13: public int compareTo(Object b);
14: }
|