home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Collate3.java < prev    next >
Text File  |  1998-05-08  |  1KB  |  44 lines

  1. // Copyright(c) 1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.predicates.*;
  4. import java.text.Collator;
  5.  
  6. /**
  7.  * Comparison using Collator objects.
  8.  *
  9.  * @see com.objectspace.jgl.predicates.LessCollator
  10.  * @see com.objectspace.jgl.predicates.LessEqualCollator
  11.  * @see com.objectspace.jgl.predicates.GreaterCollator
  12.  * @see com.objectspace.jgl.predicates.GreaterEqualCollator
  13.  * @see java.text.Collator
  14.  * @version 3.0.0
  15.  * @author ObjectSpace, Inc.
  16.  */
  17.  
  18. public class Collate3
  19.   {
  20.   public static void show( String tag, BinaryPredicate predicate )
  21.     {
  22.     // create a set with given comparitor that allows duplicates
  23.     OrderedSet set = new OrderedSet( predicate, true );
  24.  
  25.     // add a few entries
  26.     set.add( "Texas" );
  27.     set.add( "texas" );
  28.     set.add( "Texas Fight" );
  29.  
  30.     // print the resulting container
  31.     System.out.println( tag + "\n\t" + set );
  32.     }
  33.  
  34.   public static void main( String args[] )
  35.     {
  36.     show( "old style", new LessString() );
  37.     show( "default collating", new LessCollator() );
  38.  
  39.     Collator collator = Collator.getInstance();
  40.     collator.setStrength( Collator.PRIMARY );
  41.     show( "case insensitive", new LessCollator( collator ) );
  42.     }
  43.   }
  44.