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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.predicates.*;
  4. import com.objectspace.jgl.algorithms.*;
  5.  
  6. public class Overview9
  7.   {
  8.   public static void main( String[] args )
  9.     {
  10.     Array array1 = new Array();
  11.     array1.add( new Integer( 3 ) );
  12.     array1.add( new Integer( -1 ) );
  13.     array1.add( new Integer( 2 ) );
  14.  
  15.     UnaryPredicate predicate = new PositiveNumber();
  16.     int n = Counting.countIf( array1, predicate );
  17.     System.out.println( "# of positive numbers in " + array1 + " = " + n );
  18.  
  19.     Array array2 = new Array();
  20.     Removing.removeCopyIf( array1, array2, predicate );
  21.     System.out.println( "Array without positive numbers = " + array2 );
  22.     }
  23.   }
  24.