home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Overview9.java < prev    next >
Text File  |  1997-07-30  |  661b  |  20 lines

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