01: // Comparable.java
02: // $Id: Comparable.java,v 1.3 2000/08/16 21:37:56 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1998.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.sorter;
07:
08: /**
09: * used for string comparison.
10: */
11: public interface Comparable {
12:
13: public boolean greaterThan(Comparable comp);
14:
15: public String getStringValue();
16:
17: }
|