home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / LocaleChooserDisplayStyleEditor.java < prev    next >
Text File  |  1998-05-08  |  2KB  |  79 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. public class LocaleChooserDisplayStyleEditor
  23.                 extends java.beans.PropertyEditorSupport {
  24.  
  25.   int style;
  26.  
  27.   public String[] getTags() {
  28.     String tags[] = {
  29.       "ISO",
  30.       "TARGET_LOCALE",
  31.       "CURRENT_LOCALE"
  32.     };
  33.     return tags;
  34.   }
  35.  
  36.   public String getJavaInitializationString() {
  37.     switch (style) {
  38.     case LocaleChooser.ISO:
  39.       return "LocaleChooser.ISO";
  40.     case LocaleChooser.TARGET_LOCALE:
  41.       return "LocaleChooser.TARGET_LOCALE";
  42.     default:
  43.       return "LocaleChooser.CURRENT_LOCALE";
  44.     }
  45.   }
  46.  
  47.   public void setAsText(String text) {
  48.     if (text.equals("ISO")) {
  49.       style = LocaleChooser.ISO;
  50.     } else if (text.equals("TARGET_LOCALE")) {
  51.       style = LocaleChooser.TARGET_LOCALE;
  52.     } else {
  53.       style = LocaleChooser.CURRENT_LOCALE;
  54.     }
  55.   }
  56.  
  57.   public String getAsText() {
  58.     switch (style) {
  59.     case LocaleChooser.ISO:
  60.       return "ISO";
  61.     case LocaleChooser.TARGET_LOCALE:
  62.       return "TARGET_LOCALE";
  63.     default:
  64.       return "CURRENT_LOCALE";
  65.     }
  66.   }
  67.  
  68.   public void setValue(Object o) {
  69.     style = ((Integer) o).intValue();
  70.     firePropertyChange();
  71.   }
  72.  
  73.   public Object getValue() {
  74.     return new Integer(style);
  75.   }
  76.  
  77. }
  78.  
  79.