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

  1. /*
  2.  * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
  3.  * 
  4.  * This SOURCE CODE FILE, which has been provided by Borland as part
  5.  * of a Borland product for use ONLY by licensed users of the product,
  6.  * includes CONFIDENTIAL and PROPRIETARY information of Borland.  
  7.  *
  8.  * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
  9.  * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
  10.  * THE PRODUCT.
  11.  *
  12.  * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
  13.  * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
  14.  * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
  15.  * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
  16.  * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
  17.  * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
  18.  * CODE FILE.
  19.  */
  20. package borland.samples.apps.chess.client ;
  21.  
  22. /**Contains all the strings used in the ChessViewer package that need localization...
  23. */
  24. public class CVS
  25. {
  26.  
  27.  
  28.   /**Helper method for sticking variables into the string.
  29.   * Searches the string for a % and then substitutes the variable
  30.   */
  31.   public static String Insert(String template, String snippet) {
  32.     int index = template.indexOf('%') ;
  33.     return template.substring(0, index) + snippet + template.substring(index+1);
  34.   }
  35.   
  36.   /**Helper method for sticking variables into the string.
  37.   * Searches the string for a % and then substitutes the variable
  38.   */
  39.   public static String Insert(String template, String snippet1, String snippet2) {
  40.     return Insert(Insert(template, snippet1), snippet2);
  41.   }
  42. }
  43.