home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / prosrc.bin / TextAreaBeanInfo.java < prev    next >
Text File  |  1998-03-18  |  4KB  |  145 lines

  1. /*
  2.  * @(#TextAreaBeanInfo.java
  3.  *
  4.  * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
  5.  *
  6.  */
  7.  
  8. package symantec.itools.db.awt;
  9.  
  10. import java.beans.*;
  11. import symantec.itools.beans.*;
  12. import java.util.ResourceBundle;
  13.  
  14.  
  15. /**
  16.  * BeanInfo for the TextArea component.
  17.  *
  18.  */
  19.  
  20. public class TextAreaBeanInfo extends SimpleBeanInfo {
  21.  
  22.     /**
  23.      * Constructs a TextAreaBeanInfo object.
  24.      */
  25.     public TextAreaBeanInfo() {
  26.     }
  27.  
  28.     /**
  29.      * Gets BeanInfo for the superclass of this bean.
  30.      * @return BeanInfo[] containing this bean's superclass BeanInfo
  31.      */
  32.  
  33.     public BeanInfo[] getAdditionalBeanInfo() {
  34.         try {
  35.             java.util.Vector v = new java.util.Vector();
  36.             BeanInfo[] rv;
  37.             BeanInfo b;
  38.             Class c = beanClass.getSuperclass();
  39.  
  40.             while (c.isAssignableFrom(Object.class) != true) {
  41.                 b = Introspector.getBeanInfo(c);
  42.                 v.addElement(b);
  43.                 c = c.getSuperclass();
  44.             }
  45.             rv = new BeanInfo[v.size()];
  46.             v.copyInto(rv);
  47.  
  48.             return rv;
  49.         }
  50.         catch (IntrospectionException e) { throw new Error(e.toString());}
  51.     }
  52.  
  53.     /**
  54.      * Gets the SymantecBeanDescriptor for this bean.
  55.      * @return an object of type SymantecBeanDescriptor
  56.      * @see symantec.itools.beans.SymantecBeanDescriptor
  57.      */
  58.     public BeanDescriptor getBeanDescriptor() {
  59.         SymantecBeanDescriptor bd = new SymantecBeanDescriptor(beanClass);
  60.         bd.setFolder("dbAWARE");
  61.         bd.setToolbar("dbAWARE");
  62.         // bd.setValue("VPO_Object", new Boolean(true));
  63.         bd.setWinHelp("0x12337");
  64.  
  65.         return (BeanDescriptor) bd;
  66.     }
  67.  
  68.     /**
  69.      * Gets an image that may be used to visually represent this bean
  70.      * (in the toolbar, on a form, etc).
  71.      * @param iconKind the type of icon desired, one of: BeanInfo.ICON_MONO_16x16,
  72.      * BeanInfo.ICON_COLOR_16x16, BeanInfo.ICON_MONO_32x32, or BeanInfo.ICON_COLOR_32x32.
  73.      * @return an image for this bean, always color even if requested monochrome
  74.      * @see BeanInfo#ICON_MONO_16x16
  75.      * @see BeanInfo#ICON_COLOR_16x16
  76.      * @see BeanInfo#ICON_MONO_32x32
  77.      * @see BeanInfo#ICON_COLOR_32x32
  78.      */
  79.     public java.awt.Image getIcon(int iconKind) {
  80.         if (iconKind == BeanInfo.ICON_MONO_16x16 ||
  81.             iconKind == BeanInfo.ICON_COLOR_16x16) {
  82.             java.awt.Image img = loadImage("TextAreaC16.gif");
  83.             return img;
  84.         }
  85.  
  86.         if (iconKind == BeanInfo.ICON_MONO_32x32 ||
  87.             iconKind == BeanInfo.ICON_COLOR_32x32) {
  88.             java.awt.Image img = loadImage("TextAreaC32.gif");
  89.             return img;
  90.         }
  91.  
  92.         return null;
  93.     }
  94.  
  95.     /**
  96.      * Gets an empty MethodDescriptor array.
  97.      * @return an empty array
  98.      */
  99.     public MethodDescriptor[] getMethodDescriptors() {
  100.         return new MethodDescriptor[0];
  101.     }
  102.  
  103.     /**
  104.      * Gets an array of descriptions of this bean's properties.
  105.      * @return property descriptions for this bean
  106.      */
  107.     public PropertyDescriptor[] getPropertyDescriptors() {
  108.         ResourceBundle prop = ResourceBundle.getBundle("symantec.itools.db.resources.PropBundle");
  109.  
  110.         try{
  111.  
  112.         PropertyDescriptor pd1 = new PropertyDescriptor("dataBinding", beanClass);
  113.         pd1.setBound(false);
  114.         pd1.setConstrained(false);
  115.         pd1.setDisplayName(prop.getString("dataBinding"));
  116.         pd1.setPropertyEditorClass(symantec.itools.db.beans.binding.NameEditor.class);
  117.  
  118.         PropertyDescriptor pd2 = new PropertyDescriptor("triggeringEvent", beanClass);
  119.         pd2.setBound(false);
  120.         pd2.setConstrained(false);
  121.         pd2.setDisplayName(prop.getString("triggeringEvent"));
  122.         pd2.setValue("ENUMERATION", "Focus_Event=1, Text_Event=4, Key_Event=2");
  123.  
  124.         PropertyDescriptor emptyData = new PropertyDescriptor("emptyMeansNull", beanClass);
  125.         emptyData.setBound(false);
  126.         emptyData.setConstrained(false);
  127.         emptyData.setDisplayName(prop.getString("emptyMeansNull"));
  128.  
  129.         PropertyDescriptor[] rv = {pd1, pd2, emptyData};
  130.  
  131.         return rv;
  132.         } catch (IntrospectionException e) { throw new Error(e.toString()); }
  133.     }
  134.  
  135.     /**
  136.      * Returns the index of the property expected to be changed most often by the designer.
  137.      */
  138.     public int getDefaultPropertyIndex() {
  139.         return 0;    //  the index for our default property is always 0
  140.     }
  141.  
  142.     private final static Class beanClass = TextArea.class;
  143.  
  144. }    //  end of class TextAreaBeanInfo|
  145.