Methods Summary |
---|
private static java.beans.BeanDescriptor | getBdescriptor()
//GEN-HEADEREND:BeanDescriptor
// Here you can add code for customizing the BeanDescriptor.
return beanDescriptor;
|
private static java.beans.EventSetDescriptor[] | getEdescriptor()
//GEN-HEADEREND:Events
// Here you can add code for customizing the event sets array.
return eventSets;
|
private static java.beans.MethodDescriptor[] | getMdescriptor()
//GEN-HEADEREND:Methods
// Here you can add code for customizing the methods array.
return methods;
|
private static java.beans.PropertyDescriptor[] | getPdescriptor()
//GEN-HEADEREND:Properties
try {
properties = new PropertyDescriptor[8];
// Here you can add code for customizing the properties array.
properties[0] = getPropDesc("description", IasConnectorOneZero.class); // NOI18N
properties[1] = getPropDesc("idleTimeoutInSeconds", IasConnectorOneZero.class); // NOI18N
properties[2] = getPropDesc("jndiName", IasConnectorOneZero.class); // NOI18N
properties[3] = getPropDesc("maxPoolSize", IasConnectorOneZero.class); // NOI18N
properties[4] = getPropDesc("maxWaitTimeInMillis", IasConnectorOneZero.class); // NOI18N
properties[5] = getPropDesc("propertyElements", IasConnectorOneZero.class); // NOI18N
properties[6] = getPropDesc("roleMap", IasConnectorOneZero.class); // NOI18N
properties[7] = getPropDesc("steadyPoolSize", IasConnectorOneZero.class); // NOI18N
}
catch (Throwable t) {
t.printStackTrace();
}
return properties;
|
private static java.beans.PropertyDescriptor | getPropDesc(java.lang.String propName, java.lang.Class bc)
PropertyDescriptor pd = new PropertyDescriptor(propName,bc);
pd.setDisplayName(bundle.getString("DISPNAME_"+propName));
pd.setName(bundle.getString("NAME_"+propName));
pd.setShortDescription(bundle.getString("SHORTDESC_"+propName));
return pd;
|
public java.beans.PropertyDescriptor[] | getPropertyDescriptors()Gets the bean's PropertyDescriptor s. //GEN-END:Idx
//GEN-FIRST:Superclass
// Here you can add code for customizing the Superclass BeanInfo.
//GEN-LAST:Superclass
return getPdescriptor();
|