home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / LocaleChooserLocaleChoicesEditor.java < prev    next >
Text File  |  1998-05-08  |  3KB  |  85 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.intl.beans;
  21.  
  22. import java.util.*;
  23.  
  24. public class LocaleChooserLocaleChoicesEditor extends LocaleChooserMultipleLocaleSelector {
  25.  
  26.   public LocaleChooserLocaleChoicesEditor() {
  27.     localeChooser.setAllowMultiSelect(true);
  28.     localeChooser.setTitle(resourceBundle.getString("all_runtime_locales"));
  29.   }
  30.  
  31.   public String getJavaInitializationString() {
  32.     Locale [] selectedLocales = localeChooser.getSelectedLocales();
  33.  
  34.     if ((selectedLocales.length == 0) ||
  35.         ((selectedLocales.length == 1) &&
  36.          (selectedLocales[0].equals(LocaleChooser.TITLE_LOCALE)))) {
  37. //      System.out.println(this.getClass().getName() + ".getJavaInitializationString(): ALL_LOCALES");
  38.       return "LocaleChooser.ALL_LOCALES";
  39.     }
  40.     return super.getJavaInitializationString();
  41.   }
  42.  
  43.   public void setValue(Object o) {
  44.     try {
  45.       Locale [] localeChoices = (Locale []) ((Locale []) o).clone();
  46.       if ((localeChoices.length == 0) ||
  47.           ((localeChoices.length == 1) &&
  48.            (localeChoices[0].equals(LocaleChooser.EVERY_LOCALE)))) {
  49. //        System.out.println(this.getClass().getName() + ".setValue(): ALL_LOCALES");
  50.         localeChooser.setSelectedLocales(new Locale [] { LocaleChooser.TITLE_LOCALE });
  51.       } else {
  52.         super.setValue(o);
  53.       }
  54.     } catch (Exception e) {
  55.       e.printStackTrace();
  56.     }
  57.   }
  58.  
  59.   public Object getValue() {
  60.     Locale [] selectedLocales = localeChooser.getSelectedLocales();
  61.     if ((selectedLocales.length == 0) ||
  62.         ((selectedLocales.length == 1) &&
  63.          (selectedLocales[0].equals(LocaleChooser.TITLE_LOCALE)))) {
  64. //      System.out.println(this.getClass().getName() + ".getValue(): ALL_LOCALES");
  65.       return LocaleChooser.ALL_LOCALES;
  66.     }
  67.     return super.getValue();
  68.   }
  69.  
  70.   public String getAsText() {
  71. //    System.out.println(this.getClass().getName() + ".getAsText()");
  72.     Locale [] selectedLocales = localeChooser.getSelectedLocales();
  73.  
  74.     if ((selectedLocales.length == 0) ||
  75.         ((selectedLocales.length == 1) &&
  76.          (selectedLocales[0].equals(LocaleChooser.TITLE_LOCALE)))) {
  77. //      System.out.println(this.getClass().getName() + ".getAsText(): all_runtime_locales");
  78.       return resourceBundle.getString("all_runtime_locales");
  79.     }
  80.     return super.getAsText();
  81.   }
  82.  
  83. }
  84.  
  85.