home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / LocaleChooserCollationLocaleEditor.java < prev    next >
Text File  |  1998-05-08  |  4KB  |  107 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.beans.*;
  23. import java.util.*;
  24. import java.awt.*;
  25. import java.awt.event.*;
  26. import borland.jbcl.model.*;
  27.  
  28. public class LocaleChooserCollationLocaleEditor extends java.beans.PropertyEditorSupport {
  29.  
  30.   protected Locale collationLocale = null;
  31.  
  32.   public String[] getTags() {
  33.     String [] tags;
  34.     if (collationLocale.equals(LocaleChooser.NULL_LOCALE) ||
  35.         collationLocale.equals(LocaleChooser.DEFAULT_RUNTIME_LOCALE)) {
  36.       tags = new String [] {
  37.         "NULL_LOCALE",
  38.         "DEFAULT_RUNTIME_LOCALE",
  39.       };
  40.     } else {
  41.       tags = new String [] { 
  42.         "NULL_LOCALE",
  43.         "DEFAULT_RUNTIME_LOCALE",
  44.         getJavaInitializationString(),
  45.       };
  46.     }
  47.     return tags;
  48.   }
  49.  
  50.   public String getJavaInitializationString() {
  51.     String localeInitString;
  52.     if (collationLocale.equals(LocaleChooser.NULL_LOCALE)) {
  53.       localeInitString =  "LocaleChooser.NULL_LOCALE";
  54.     } else if (collationLocale.equals(LocaleChooser.DEFAULT_RUNTIME_LOCALE)) {
  55.       localeInitString =  "LocaleChooser.DEFAULT_RUNTIME_LOCALE";
  56.     } else {
  57.       localeInitString = "new java.util.Locale(\"" + collationLocale.getLanguage() + "\", \"";
  58.       if (collationLocale.getCountry().length() == 0) {
  59.         localeInitString += "\")";
  60.       } else {
  61.         localeInitString += collationLocale.getCountry() + "\"";
  62.         if (collationLocale.getVariant().length() == 0) {
  63.           localeInitString += ")";
  64.         } else {
  65.           localeInitString += ",\"" + collationLocale.getVariant() + "\")";
  66.         }
  67.       }
  68.     }
  69.     return localeInitString;
  70.   }
  71.  
  72.   public void setAsText(String text) {
  73.     throw new IllegalArgumentException(text);
  74.   }
  75.  
  76.   public String getAsText() {
  77.     String localeInitString;
  78.     if (collationLocale.equals(LocaleChooser.NULL_LOCALE)) {
  79.       localeInitString =  "NULL_LOCALE";
  80.     } else if (collationLocale.equals(LocaleChooser.DEFAULT_RUNTIME_LOCALE)) {
  81.       localeInitString =  "DEFAULT_RUNTIME_LOCALE";
  82.     } else {
  83.       localeInitString = "new java.util.Locale(\"" + collationLocale.getLanguage() + "\", \"";
  84.       if (collationLocale.getCountry().length() == 0) {
  85.         localeInitString += "\")";
  86.       } else {
  87.         localeInitString += collationLocale.getCountry() + "\"";
  88.         if (collationLocale.getVariant().length() == 0) {
  89.           localeInitString += ")";
  90.         } else {
  91.           localeInitString += ",\"" + collationLocale.getVariant() + "\")";
  92.         }
  93.       }
  94.     }
  95.     return localeInitString;
  96.   }
  97.  
  98.   public void setValue(Object o) {
  99.     collationLocale = (Locale) o;
  100.   }
  101.  
  102.   public Object getValue() {
  103.     return collationLocale;
  104.   }
  105.  
  106. }
  107.