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

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