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

  1. // Copyright(c) 1997 ObjectSpace, Inc.
  2.  
  3. import COM.objectspace.jgl.*;
  4.  
  5. /**
  6.  * Calculate and sum the difference between adjacent pairs of values.
  7.  *
  8.  * @see COM.objectspace.jgl.Counting
  9.  * @version 2.0.2
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class Counting5
  14.   {
  15.   public static void main( String[] args )
  16.     {
  17.     Array array = new Array();
  18.     for ( long i = 1; i <= 10; ++i )
  19.       array.add( new Long( i ) );
  20.     System.out.println( array );
  21.  
  22.     Array result = new Array();
  23.     Counting.adjacentDifference
  24.       (
  25.       array,
  26.       result,
  27.       new TimesNumber( new Long( 0 ).getClass() )
  28.       );
  29.     System.out.println( result );
  30.     }
  31.   }
  32.