home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / WrappingTextViewerBeanInfo.java < prev    next >
Text File  |  1998-05-08  |  3KB  |  83 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.awt.*;
  23. import java.beans.*;
  24. import java.util.*;
  25.  
  26. public class WrappingTextViewerBeanInfo extends SimpleBeanInfo {
  27.  
  28.   ResourceBundle resourceBundle = java.util.ResourceBundle.getBundle("borland.samples.intl.beans.resources.WrappingTextViewerRes");
  29.  
  30.   public PropertyDescriptor[] getPropertyDescriptors() {
  31.     try {
  32.       PropertyDescriptor text = new PropertyDescriptor("text", 
  33.                                                        WrappingTextViewer.class);
  34.       text.setPropertyEditorClass(borland.jbcl.editors.MultilineTextEditor.class);
  35.       text.setShortDescription(resourceBundle.getString("text"));
  36.  
  37.       PropertyDescriptor columnName = new PropertyDescriptor("columnName", 
  38.                                                              WrappingTextViewer.class);
  39.       columnName.setShortDescription(resourceBundle.getString("columnName"));
  40.  
  41.       PropertyDescriptor dataSet = new PropertyDescriptor("dataSet", 
  42.                                                           WrappingTextViewer.class);
  43.       dataSet.setShortDescription(resourceBundle.getString("dataSet"));
  44.  
  45.       PropertyDescriptor locale = new PropertyDescriptor("locale", 
  46.                                                        InternationalClock.class);
  47.  
  48.       PropertyDescriptor background = new PropertyDescriptor("background", 
  49.                                                        InternationalClock.class);
  50.  
  51.       PropertyDescriptor foreground = new PropertyDescriptor("foreground", 
  52.                                                        InternationalClock.class);
  53.  
  54.       PropertyDescriptor font = new PropertyDescriptor("font", 
  55.                                                        InternationalClock.class);
  56.  
  57.       PropertyDescriptor propertyDescriptor[] = { text, columnName, dataSet, locale,
  58.                                                   background, foreground, font };
  59.       return propertyDescriptor;
  60.     } catch (Exception ex) {
  61.       System.err.println("unexpected exeption: " + ex);
  62.       return null;
  63.     }
  64.   }
  65.  
  66.   public EventSetDescriptor[] getEventSetDescriptors() {
  67.     EventSetDescriptor[] eventDescriptor = new EventSetDescriptor[0];
  68.     return eventDescriptor;
  69.   }
  70.  
  71.   public BeanDescriptor getBeanDescriptor() {
  72.     return new BeanDescriptor(WrappingTextViewer.class);
  73.   }
  74.  
  75.   public Image getIcon(int iconKind) {
  76.     if (iconKind == BeanInfo.ICON_COLOR_32x32) {
  77.       return loadImage("resources/WrappingTextViewerIconColor32.gif");
  78.     }
  79.     return null;
  80.   }
  81.     
  82. }
  83.