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

  1. package symantec.itools.multimedia;
  2.  
  3. import java.beans.*;
  4. import symantec.itools.beans.*;
  5. import java.util.ResourceBundle;
  6.  
  7. /**
  8.  * BeanInfo for Firework.
  9.  *
  10.  */
  11.  
  12. public class FireworkBeanInfo extends SimpleBeanInfo {
  13.  
  14.     /**
  15.      * Constructs a FireworkBeanInfo object.
  16.      */
  17.     public FireworkBeanInfo() {
  18.     }
  19.  
  20.     /**
  21.      * Gets a BeanInfo for the superclass of this bean.
  22.      * @return BeanInfo[] containing this bean's superclass BeanInfo
  23.      */
  24.     public BeanInfo[] getAdditionalBeanInfo() {
  25.         try {
  26.             BeanInfo[] bi = new BeanInfo[1];
  27.             bi[0] = Introspector.getBeanInfo(beanClass.getSuperclass());
  28.             return bi;
  29.         }
  30.         catch (IntrospectionException e) { throw new Error(e.toString());}
  31.     }
  32.  
  33.     /**
  34.      * Gets the SymantecBeanDescriptor for this bean.
  35.      * @return an object of type SymantecBeanDescriptor
  36.      * @see symantec.itools.beans.SymantecBeanDescriptor
  37.      */
  38.     public BeanDescriptor getBeanDescriptor() {
  39.         ResourceBundle group = ResourceBundle.getBundle("symantec.itools.resources.GroupBundle");
  40.         String s=group.getString("GroupMultimedia"); 
  41.  
  42.         SymantecBeanDescriptor bd = new SymantecBeanDescriptor(beanClass);
  43.         bd.setFolder(s);
  44.         bd.setToolbar(s);
  45.         bd.setWinHelp("0x12340");
  46.  
  47.         return (BeanDescriptor) bd;
  48.     }
  49.  
  50.     /**
  51.      * Gets an image that may be used to visually represent this bean
  52.      * (in the toolbar, on a form, etc).
  53.      * @param iconKind the type of icon desired, one of: BeanInfo.ICON_MONO_16x16,
  54.      * BeanInfo.ICON_COLOR_16x16, BeanInfo.ICON_MONO_32x32, or BeanInfo.ICON_COLOR_32x32.
  55.      * @return an image for this bean, always color even if requested monochrome
  56.      * @see BeanInfo#ICON_MONO_16x16
  57.      * @see BeanInfo#ICON_COLOR_16x16
  58.      * @see BeanInfo#ICON_MONO_32x32
  59.      * @see BeanInfo#ICON_COLOR_32x32
  60.      */
  61.     public java.awt.Image getIcon(int iconKind) {
  62.         if (iconKind == BeanInfo.ICON_MONO_16x16 ||
  63.             iconKind == BeanInfo.ICON_COLOR_16x16) {
  64.             java.awt.Image img = loadImage("FireworkC16.gif");
  65.             return img;
  66.         }
  67.  
  68.         if (iconKind == BeanInfo.ICON_MONO_32x32 ||
  69.             iconKind == BeanInfo.ICON_COLOR_32x32) {
  70.             java.awt.Image img = loadImage("FireworkC32.gif");
  71.             return img;
  72.         }
  73.  
  74.         return null;
  75.     }
  76.  
  77.     /**
  78.      * Gets an array of descriptions of the methods used for "connections" by
  79.      * Visual CafΘ's Interaction Wizard.
  80.      * Included in each method description is a CONNECTIONS ConnectionDescriptor.
  81.      * @return method descriptions for this bean
  82.      * @see symantec.itools.beans.ConnectionDescriptor#CONNECTIONS
  83.      */
  84.     public MethodDescriptor[] getMethodDescriptors() {
  85.         Class[] args;
  86.         ConnectionDescriptor connection;
  87.         java.util.Vector connections;
  88.         java.util.Vector md = new java.util.Vector();
  89.         ResourceBundle conn = ResourceBundle.getBundle("symantec.itools.resources.ConnBundle");
  90.  
  91.         try{
  92.             args = null;
  93.             MethodDescriptor unfreezeRockets = new MethodDescriptor(beanClass.getMethod("unfreezeRockets", args));
  94.  
  95.             connections = new java.util.Vector();
  96.             connection = new ConnectionDescriptor("input", "void", "",
  97.                                     "%name%.unfreezeRockets();",
  98.                                     conn.getString("unfreezeRockets"));
  99.             connections.addElement(connection);
  100.  
  101.             unfreezeRockets.setValue(ConnectionDescriptor.CONNECTIONS, connections);
  102.             md.addElement(unfreezeRockets);
  103.         } catch (Exception e) { throw new Error("unfreezeRockets:: " + e.toString()); }
  104.  
  105.         try{
  106.             args = null;
  107.             MethodDescriptor freezeRockets = new MethodDescriptor(beanClass.getMethod("freezeRockets", args));
  108.  
  109.             connections = new java.util.Vector();
  110.             connection = new ConnectionDescriptor("input", "void", "",
  111.                                     "%name%.freezeRockets();",
  112.                                     conn.getString("freezeRockets"));
  113.             connections.addElement(connection);
  114.  
  115.             freezeRockets.setValue(ConnectionDescriptor.CONNECTIONS, connections);
  116.             md.addElement(freezeRockets);
  117.         } catch (Exception e) { throw new Error("freezeRockets:: " + e.toString()); }
  118.  
  119.         MethodDescriptor[] rv = new MethodDescriptor[md.size()];
  120.         md.copyInto(rv);
  121.  
  122.         return rv;
  123.     }
  124.  
  125.     public PropertyDescriptor[] getPropertyDescriptors() { return new PropertyDescriptor[0]; }
  126.  
  127.     private final static Class beanClass = Firework.class;
  128.  
  129.     }    //  end of class FireworkBeanInfo