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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.algorithms.*;
  4. import com.objectspace.jgl.predicates.*;
  5.  
  6. public class Functions6
  7.   {
  8.   public static void main( String[] args )
  9.     {
  10.     DList list = new DList();
  11.     list.add( "dog" );
  12.     list.add( "ape" );
  13.     list.add( "emu" );
  14.     UnaryPredicate predicate = new BindSecondPredicate( new GreaterString(), "bat" );
  15.     int n = Counting.countIf( list, predicate );
  16.     System.out.println( "The number of strings in " + list + " > bat = " + n );
  17.     }
  18.   }
  19.