KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > sun > share > configbean > AppClientRefBeanInfo


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 package org.netbeans.modules.j2ee.sun.share.configbean;
20
21 import java.beans.*;
22 import org.openide.util.Exceptions;
23
24 public class AppClientRefBeanInfo extends SimpleBeanInfo {
25     
26     /** Return an appropriate icon (currently, only 16x16 color is available)
27      */

28     public java.awt.Image JavaDoc getIcon(int iconKind) {
29         return loadImage("resources/AppClientRefIcon16.gif"); // NOI18N
30
}
31     
32     /**
33      * Gets the bean's <code>BeanDescriptor</code>s.
34      *
35      * @return BeanDescriptor describing the editable
36      * properties of this bean. May return null if the
37      * information should be obtained by automatic analysis.
38      */

39     public BeanDescriptor getBeanDescriptor() {
40             BeanDescriptor beanDescriptor = new BeanDescriptor ( org.netbeans.modules.j2ee.sun.share.configbean.AppClientRef.class , org.netbeans.modules.j2ee.sun.share.configbean.customizers.other.ModuleRefCustomizer.class ); // NOI18N//GEN-HEADEREND:BeanDescriptor
41
return beanDescriptor;
42     }
43     
44     /**
45      * Gets the bean's <code>PropertyDescriptor</code>s.
46      *
47      * @return An array of PropertyDescriptors describing the editable
48      * properties supported by this bean. May return null if the
49      * information should be obtained by automatic analysis.
50      * <p>
51      * If a property is indexed, then its entry in the result array will
52      * belong to the IndexedPropertyDescriptor subclass of PropertyDescriptor.
53      * A client of getPropertyDescriptors can use "instanceof" to check
54      * if a given PropertyDescriptor is an IndexedPropertyDescriptor.
55      */

56     public PropertyDescriptor[] getPropertyDescriptors() {
57             int PROPERTY_identity = 0;
58             int PROPERTY_moduleUri = 1;
59             int PROPERTY_refIdentity = 2;
60             PropertyDescriptor[] properties = new PropertyDescriptor[3];
61
62             try {
63                 properties[PROPERTY_identity] = new PropertyDescriptor ( "identity", org.netbeans.modules.j2ee.sun.share.configbean.AppClientRef.class, "getIdentity", "setIdentity" ); // NOI18N
64
properties[PROPERTY_moduleUri] = new PropertyDescriptor ( "moduleUri", org.netbeans.modules.j2ee.sun.share.configbean.AppClientRef.class, "getModuleUri", null ); // NOI18N
65
properties[PROPERTY_refIdentity] = new PropertyDescriptor ( "refIdentity", org.netbeans.modules.j2ee.sun.share.configbean.AppClientRef.class, "getRefIdentity", null ); // NOI18N
66
}
67             catch(IntrospectionException e) {
68                 Exceptions.printStackTrace(e);
69             }//GEN-HEADEREND:Properties
70
return properties;
71     }
72     
73     /**
74      * Gets the bean's <code>EventSetDescriptor</code>s.
75      *
76      * @return An array of EventSetDescriptors describing the kinds of
77      * events fired by this bean. May return null if the information
78      * should be obtained by automatic analysis.
79      */

80     public EventSetDescriptor[] getEventSetDescriptors() {
81             int EVENT_propertyChangeListener = 0;
82             int EVENT_vetoableChangeListener = 1;
83             EventSetDescriptor[] eventSets = new EventSetDescriptor[2];
84
85             try {
86                 eventSets[EVENT_propertyChangeListener] = new EventSetDescriptor ( org.netbeans.modules.j2ee.sun.share.configbean.AppClientRef.class, "propertyChangeListener", java.beans.PropertyChangeListener JavaDoc.class, new String JavaDoc[] {"propertyChange"}, "addPropertyChangeListener", "removePropertyChangeListener" ); // NOI18N
87
eventSets[EVENT_vetoableChangeListener] = new EventSetDescriptor ( org.netbeans.modules.j2ee.sun.share.configbean.AppClientRef.class, "vetoableChangeListener", java.beans.VetoableChangeListener JavaDoc.class, new String JavaDoc[] {"vetoableChange"}, "addVetoableChangeListener", "removeVetoableChangeListener" ); // NOI18N
88
}
89             catch(IntrospectionException e) {
90                 Exceptions.printStackTrace(e);
91             }
92             return eventSets;
93     }
94     
95     /**
96      * Gets the bean's <code>MethodDescriptor</code>s.
97      *
98      * @return An array of MethodDescriptors describing the methods
99      * implemented by this bean. May return null if the information
100      * should be obtained by automatic analysis.
101      */

102     public MethodDescriptor[] getMethodDescriptors() {
103             return new MethodDescriptor[0];
104     }
105 }
106
107
Popular Tags