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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.adapters.*;
  4. import com.objectspace.jgl.algorithms.*;
  5.  
  6. /**
  7.  * Printing an JGL container and a native array of primitives.
  8.  *
  9.  * @see com.objectspace.jgl.algorithms.Printing
  10.  * @version 3.0.0
  11.  * @author ObjectSpace, Inc.
  12.  */
  13.  
  14. public class Printing1
  15.   {
  16.   public static void main( String[] args )
  17.     {
  18.     String[] strings = { "gnu", "emu", "dog" };
  19.     ObjectIterator objectBegin = ObjectIterator.begin( strings );
  20.     ObjectIterator objectEnd = ObjectIterator.end( strings );
  21.     System.out.println( "strings = " + Printing.toString( objectBegin, objectEnd ) );
  22.     System.out.print( "strings = " );
  23.     Printing.println( objectBegin, objectEnd );
  24.  
  25.     int[] ints = { 3, 4, 7 };
  26.     IntIterator intBegin = IntIterator.begin( ints );
  27.     IntIterator intEnd = IntIterator.end( ints );
  28.     System.out.println( "ints = " + Printing.toString( intBegin, intEnd ) );
  29.     System.out.print( "ints = " );
  30.     Printing.println( intBegin, intEnd );
  31.     }
  32.   }
  33.