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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import COM.objectspace.jgl.*;
  3.  
  4. /**
  5.  * Replacing provides algorithms for substituting elements in a container.
  6.  *
  7.  * @see COM.objectspace.jgl.Replacing
  8.  * @version 2.0.2
  9.  * @author ObjectSpace, Inc.
  10.  */
  11.  
  12. public class Algorithms6
  13.   {
  14.   public static void main( String[] args )
  15.     {
  16.     DList list = new DList();
  17.     list.add( new Integer( -1 ) );
  18.     list.add( new Integer( 1 ) );
  19.     list.add( new Integer( -2 ) );
  20.     list.add( new Integer( 1 ) );
  21.     list.add( new Integer( -3 ) );
  22.     System.out.println( "list = " + list );
  23.  
  24.     Object oldValue = new Integer( 1 );
  25.     Object newValue = new Integer( 4 );
  26.     int n1 = Replacing.replace( list, oldValue, newValue );
  27.     System.out.println( "after 1 -> 4, list = " + list );
  28.  
  29.     Array array = new Array();
  30.     UnaryPredicate predicate = new NegativeNumber();
  31.     newValue = new Integer( 0 );
  32.     Replacing.replaceCopyIf( list, array, predicate, newValue );
  33.     System.out.println( "list = " + list );
  34.     System.out.println( "array = " + array );
  35.     }
  36.   }
  37.