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