home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Filtering1.java < prev    next >
Text File  |  1997-07-30  |  1KB  |  45 lines

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2.  
  3. import COM.objectspace.jgl.*;
  4.  
  5. /**
  6.  * Collapsing consecutive elements in a native array of Objects and an JGL container.
  7.  *
  8.  * @see COM.objectspace.jgl.Filtering
  9.  * @version 2.0.2
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class Filtering1
  14.   {
  15.   public static void main( String[] args )
  16.     {
  17.     String[] strings = { "gnu", "emu", "emu", "fox", "fox", "fox", "gnu" };
  18.     ObjectIterator begin = ObjectIterator.begin( strings );
  19.     ObjectIterator end = ObjectIterator.end( strings );
  20.     System.out.print( "strings = " );
  21.     Printing.println( begin, end );
  22.     ObjectIterator last = (ObjectIterator) Filtering.unique( begin, end );
  23.     System.out.print( "filtered strings = " );
  24.     Printing.println( begin, end );
  25.     int remaining = begin.distance( last );
  26.     System.out.println( "remaining = " + remaining );
  27.     System.out.print( "filtered array with bounds given = " );
  28.     end.retreat( remaining );
  29.     Printing.println( begin, end );
  30.  
  31.     Array array = new Array();
  32.     array.add( "gnu" );
  33.     array.add( "emu" );
  34.     array.add( "emu" );
  35.     array.add( "fox" );
  36.     array.add( "fox" );
  37.     array.add( "fox" );
  38.     array.add( "gnu" );
  39.     System.out.println( "array = " + array );
  40.     Deque deque = new Deque();
  41.     Filtering.uniqueCopy( array, new InsertIterator( deque ) );
  42.     System.out.println( "deque = " + deque );
  43.     }
  44.   }
  45.