FileDocCategorySizeDatePackage
IasConnectorOneZeroBeanInfo.javaAPI DocGlassfish v2 API7926Fri May 04 22:34:38 BST 2007com.sun.enterprise.tools.common.beans

IasConnectorOneZeroBeanInfo

public class IasConnectorOneZeroBeanInfo extends SimpleBeanInfo

Fields Summary
private static final ResourceBundle
bundle
private static BeanDescriptor
beanDescriptor
private static PropertyDescriptor[]
properties
private static EventSetDescriptor[]
eventSets
private static MethodDescriptor[]
methods
private static int
defaultPropertyIndex
private static int
defaultEventIndex
Constructors Summary
Methods Summary
private static java.beans.BeanDescriptorgetBdescriptor()

       
        //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.PropertyDescriptorgetPropDesc(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 PropertyDescriptors.

return
An array of PropertyDescriptors describing the editable properties supported by this bean. May return null if the information should be obtained by automatic analysis.

If a property is indexed, then its entry in the result array will belong to the IndexedPropertyDescriptor subclass of PropertyDescriptor. A client of getPropertyDescriptors can use "instanceof" to check if a given PropertyDescriptor is an IndexedPropertyDescriptor.

 //GEN-END:Idx
    
    
    //GEN-FIRST:Superclass
    
    // Here you can add code for customizing the Superclass BeanInfo.
    
    //GEN-LAST:Superclass
    
                                                  
    
                                                                            
       
        return getPdescriptor();