KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xml > tax > beans > beaninfo > TreeNodeFilterBeanInfo


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.xml.tax.beans.beaninfo;
20
21 import java.beans.*;
22 import org.netbeans.tax.traversal.TreeNodeFilter;
23 import org.openide.util.Exceptions;
24
25 /**
26  *
27  * @author Libor Kramolis
28  * @version 0.1
29  */

30 public class TreeNodeFilterBeanInfo extends SimpleBeanInfo {
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 ( TreeNodeFilter.class , null );
41         
42         beanDescriptor.setDisplayName ( Util.THIS.getString ("NAME_TreeNodeFilter") );
43         beanDescriptor.setShortDescription ( Util.THIS.getString ("HINT_TreeNodeFilter") );
44         return beanDescriptor;
45     }
46
47     /**
48      * Gets the bean's <code>PropertyDescriptor</code>s.
49      *
50      * @return An array of PropertyDescriptors describing the editable
51      * properties supported by this bean. May return null if the
52      * information should be obtained by automatic analysis.
53      * <p>
54      * If a property is indexed, then its entry in the result array will
55      * belong to the IndexedPropertyDescriptor subclass of PropertyDescriptor.
56      * A client of getPropertyDescriptors can use "instanceof" to check
57      * if a given PropertyDescriptor is an IndexedPropertyDescriptor.
58      */

59     public PropertyDescriptor[] getPropertyDescriptors() {
60         int PROPERTY_acceptPolicy = 0;
61         int PROPERTY_nodeTypes = 1;
62         PropertyDescriptor[] properties = new PropertyDescriptor[2];
63
64         try {
65             properties[PROPERTY_acceptPolicy] = new PropertyDescriptor ( "acceptPolicy", TreeNodeFilter.class, "getAcceptPolicy", null ); // NOI18N
66
properties[PROPERTY_nodeTypes] = new PropertyDescriptor ( "nodeTypes", TreeNodeFilter.class, "getNodeTypes", null ); // NOI18N
67
}
68         catch( IntrospectionException e) {
69             Exceptions.printStackTrace(e);
70         }
71         return properties;
72     }
73
74     /**
75      * Gets the bean's <code>EventSetDescriptor</code>s.
76      *
77      * @return An array of EventSetDescriptors describing the kinds of
78      * events fired by this bean. May return null if the information
79      * should be obtained by automatic analysis.
80      */

81     public EventSetDescriptor[] getEventSetDescriptors() {
82         return new EventSetDescriptor[0];
83     }
84
85     /**
86      * Gets the bean's <code>MethodDescriptor</code>s.
87      *
88      * @return An array of MethodDescriptors describing the methods
89      * implemented by this bean. May return null if the information
90      * should be obtained by automatic analysis.
91      */

92     public MethodDescriptor[] getMethodDescriptors() {
93     return new MethodDescriptor[0];
94     }
95
96 }
97
Popular Tags