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

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