home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
VCAFE.3.0A
/
Source.bin
/
KeyPressManagerPanelBeanInfo.java
< prev
next >
Wrap
Text File
|
1998-08-21
|
5KB
|
135 lines
package symantec.itools.awt;
import java.beans.*;
import symantec.itools.beans.*;
import java.util.ResourceBundle;
// 08/13/97 LAB Removed AutoTab property (It didn't do anything).
// 08/19/98 LAB Moved to GroupAWTAdditions folder.
/**
* BeanInfo for KeyPressManagerPanel.
*
*/
public class KeyPressManagerPanelBeanInfo extends SimpleBeanInfo {
/**
* Constructs a KeyPressManagerPanelBeanInfo object.
*/
public KeyPressManagerPanelBeanInfo() {
}
/**
* Gets a BeanInfo for the superclass of this bean.
* @return BeanInfo[] containing this bean's superclass BeanInfo
*/
public BeanInfo[] getAdditionalBeanInfo() {
try {
BeanInfo[] bi = new BeanInfo[1];
bi[0] = Introspector.getBeanInfo(beanClass.getSuperclass());
return bi;
}
catch (IntrospectionException e) { throw new Error(e.toString());}
}
/**
* Gets the SymantecBeanDescriptor for this bean.
* @return an object of type SymantecBeanDescriptor
* @see symantec.itools.beans.SymantecBeanDescriptor
*/
public BeanDescriptor getBeanDescriptor() {
ResourceBundle group = ResourceBundle.getBundle("symantec.itools.resources.GroupBundle");
String s=group.getString("GroupAWTAdditions");
SymantecBeanDescriptor bd = new SymantecBeanDescriptor(beanClass);
bd.setFolder(s);
bd.setToolbar(s);
bd.setWinHelp("0x123B4");
return (BeanDescriptor) bd;
}
/**
* Gets an image that may be used to visually represent this bean
* (in the toolbar, on a form, etc).
* @param iconKind the type of icon desired, one of: BeanInfo.ICON_MONO_16x16,
* BeanInfo.ICON_COLOR_16x16, BeanInfo.ICON_MONO_32x32, or BeanInfo.ICON_COLOR_32x32.
* @return an image for this bean, always color even if requested monochrome
* @see BeanInfo#ICON_MONO_16x16
* @see BeanInfo#ICON_COLOR_16x16
* @see BeanInfo#ICON_MONO_32x32
* @see BeanInfo#ICON_COLOR_32x32
*/
public java.awt.Image getIcon(int iconKind) {
if (iconKind == BeanInfo.ICON_MONO_16x16 ||
iconKind == BeanInfo.ICON_COLOR_16x16) {
java.awt.Image img = loadImage("KeyPressManagerPanelC16.gif");
return img;
}
if (iconKind == BeanInfo.ICON_MONO_32x32 ||
iconKind == BeanInfo.ICON_COLOR_32x32) {
java.awt.Image img = loadImage("KeyPressManagerPanelC32.gif");
return img;
}
return null;
}
/**
* Gets an array of descriptions of the methods used for "connections" by
* Visual CafΘ's Interaction Wizard.
* Included in each method description is a CONNECTIONS ConnectionDescriptor.
* @return method descriptions for this bean
* @see symantec.itools.beans.ConnectionDescriptor#CONNECTIONS
*/
public MethodDescriptor[] getMethodDescriptors() {
Class[] args;
ConnectionDescriptor connection;
java.util.Vector connections;
java.util.Vector md = new java.util.Vector();
ResourceBundle conn = ResourceBundle.getBundle("symantec.itools.resources.ConnBundle");
String s;
try{
args = null;
MethodDescriptor removeDefaultButton = new MethodDescriptor(beanClass.getMethod("removeDefaultButton", args));
connections = new java.util.Vector();
s=conn.getString("removeDefaultButton");
connection = new ConnectionDescriptor("input", "void", "",
"%name%.removeDefaultButton();",s);
connections.addElement(connection);
removeDefaultButton.setValue(ConnectionDescriptor.CONNECTIONS, connections);
md.addElement(removeDefaultButton);
} catch (Exception e) { throw new Error("removeDefaultButton:: " + e.toString()); }
try{
args = null;
MethodDescriptor removeCancelButton = new MethodDescriptor(beanClass.getMethod("removeCancelButton", args));
connections = new java.util.Vector();
s=conn.getString("removeCancelButton");
connection = new ConnectionDescriptor("input", "void", "",
"%name%.removeCancelButton();",s);
connections.addElement(connection);
removeCancelButton.setValue(ConnectionDescriptor.CONNECTIONS, connections);
md.addElement(removeCancelButton);
} catch (Exception e) { throw new Error("removeCancelButton:: " + e.toString()); }
MethodDescriptor[] rv = new MethodDescriptor[md.size()];
md.copyInto(rv);
return rv;
}
public PropertyDescriptor[] getPropertyDescriptors() {
return new PropertyDescriptor[0];
}
private final static Class beanClass = KeyPressManagerPanel.class;
} // end of class KeyPressManagerPanelBeanInfo