home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Functions1.java < prev    next >
Text File  |  1998-05-08  |  659b  |  22 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 Functions1
  7.   {
  8.   public static void main( String[] args )
  9.     {
  10.     Array array = new Array();
  11.     array.add( new Integer( 3 ) );
  12.     array.add( new Integer( -2 ) );
  13.     array.add( new Integer( 3 ) );
  14.     array.add( new Integer( -5 ) );
  15.     array.add( new Integer( -4 ) );
  16.  
  17.     UnaryPredicate predicate = new PositiveNumber();
  18.     int n = Counting.countIf( array, predicate );
  19.     System.out.println( "Number of positive Integers in " + array + " = " + n );
  20.     }
  21.   }
  22.