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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.algorithms.*;
  4. import com.objectspace.jgl.util.*;
  5.  
  6. /**
  7.  * Copying a JGL container into another JGL container and standard output, backwards copying.
  8.  *
  9.  * @see com.objectspace.jgl.algorithms.Copying
  10.  * @version 3.0.0
  11.  * @author ObjectSpace, Inc.
  12.  */
  13.  
  14. public class Copying1
  15.   {
  16.   public static void main( String[] args )
  17.     {
  18.     Array array = new Array();
  19.     array.add( new Integer( 3 ) );
  20.     array.add( new Integer( 6 ) );
  21.     array.add( new Integer( 4 ) );
  22.     array.add( new Integer( 1 ) );
  23.  
  24.     Deque deque = new Deque();
  25.     ArrayIterator start = array.begin();
  26.     start.advance( 1 );
  27.     ArrayIterator finish = array.end();
  28.     finish.retreat( 1 );
  29.     Copying.copy( start, finish, new InsertIterator( deque ) );
  30.     System.out.println( "array = " + array + ", deque = " + deque );
  31.  
  32.     System.out.println( "Copy array to System.out." );
  33.     Copying.copy( array, new OutputStreamIterator() );
  34.     System.out.println();
  35.  
  36.     // To perform a forward copy when there is overlap, use copyBackward().
  37.     Copying.copyBackward( start, finish, array.end() );
  38.     System.out.println( "array = " + array );
  39.     }
  40.   }
  41.