~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to xml/tax/src/org/netbeans/modules/xml/tax/beans/beaninfo/TreeDTDBeanInfo.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
package org.netbeans.modules.xml.tax.beans.beaninfo;
 
42
 
 
43
import java.beans.*;
 
44
import org.netbeans.tax.TreeDTD;
 
45
import org.netbeans.modules.xml.tax.beans.customizer.TreeDTDCustomizer;
 
46
import org.netbeans.modules.xml.tax.beans.editor.VersionEditor;
 
47
import org.netbeans.modules.xml.tax.beans.editor.EncodingEditor;
 
48
import org.openide.util.Exceptions;
 
49
 
 
50
/**
 
51
 *
 
52
 * @author  Libor Kramolis
 
53
 * @version 0.1
 
54
 */
 
55
public class TreeDTDBeanInfo extends SimpleBeanInfo {
 
56
 
 
57
    /**
 
58
     * Gets the bean's <code>BeanDescriptor</code>s.
 
59
     * 
 
60
     * @return BeanDescriptor describing the editable
 
61
     * properties of this bean.  May return null if the
 
62
     * information should be obtained by automatic analysis.
 
63
     */
 
64
    public BeanDescriptor getBeanDescriptor() {
 
65
        return new BeanDescriptor  ( TreeDTD.class , TreeDTDCustomizer.class );
 
66
    }
 
67
 
 
68
    /**
 
69
     * Gets the bean's <code>PropertyDescriptor</code>s.
 
70
     * 
 
71
     * @return An array of PropertyDescriptors describing the editable
 
72
     * properties supported by this bean.  May return null if the
 
73
     * information should be obtained by automatic analysis.
 
74
     * <p>
 
75
     * If a property is indexed, then its entry in the result array will
 
76
     * belong to the IndexedPropertyDescriptor subclass of PropertyDescriptor.
 
77
     * A client of getPropertyDescriptors can use "instanceof" to check
 
78
     * if a given PropertyDescriptor is an IndexedPropertyDescriptor.
 
79
     */
 
80
    public PropertyDescriptor[] getPropertyDescriptors() {
 
81
        int PROPERTY_encoding = 0;
 
82
        int PROPERTY_version = 1;
 
83
        PropertyDescriptor[] properties = new PropertyDescriptor[2];
 
84
 
 
85
        try {
 
86
            properties[PROPERTY_encoding] = new PropertyDescriptor ( "encoding", TreeDTD.class, "getEncoding", null ); // NOI18N
 
87
            properties[PROPERTY_encoding].setDisplayName ( Util.THIS.getString ( "PROP_TreeDTDBeanInfo_encoding" ) );
 
88
            properties[PROPERTY_encoding].setShortDescription ( Util.THIS.getString ( "HINT_TreeDTDBeanInfo_encoding" ) );
 
89
            properties[PROPERTY_encoding].setPropertyEditorClass ( EncodingEditor.class );
 
90
 
 
91
            properties[PROPERTY_version] = new PropertyDescriptor ( "version", TreeDTD.class, "getVersion", null ); // NOI18N
 
92
            properties[PROPERTY_version].setDisplayName ( Util.THIS.getString ( "PROP_TreeDTDBeanInfo_version" ) );
 
93
            properties[PROPERTY_version].setShortDescription ( Util.THIS.getString ( "HINT_TreeDTDBeanInfo_version" ) );
 
94
            properties[PROPERTY_version].setPropertyEditorClass ( VersionEditor.class );
 
95
        } catch( IntrospectionException e) {
 
96
            Exceptions.printStackTrace(e);
 
97
        }
 
98
        return properties;
 
99
    }
 
100
 
 
101
    /**
 
102
     * Gets the bean's <code>EventSetDescriptor</code>s.
 
103
     * 
 
104
     * @return  An array of EventSetDescriptors describing the kinds of 
 
105
     * events fired by this bean.  May return null if the information
 
106
     * should be obtained by automatic analysis.
 
107
     */
 
108
    public EventSetDescriptor[] getEventSetDescriptors() {
 
109
        EventSetDescriptor[] eventSets = new EventSetDescriptor[1];
 
110
 
 
111
        try {
 
112
            eventSets[0] = new EventSetDescriptor ( org.netbeans.tax.TreeDTD.class, "propertyChangeListener", java.beans.PropertyChangeListener.class, new String[] {"propertyChange"}, "addPropertyChangeListener", "removePropertyChangeListener" ); // NOI18N
 
113
        } catch( IntrospectionException e) {
 
114
            Exceptions.printStackTrace(e);
 
115
        }
 
116
        return eventSets;
 
117
    }
 
118
 
 
119
    /**
 
120
     * Gets the bean's <code>MethodDescriptor</code>s.
 
121
     * 
 
122
     * @return  An array of MethodDescriptors describing the methods 
 
123
     * implemented by this bean.  May return null if the information
 
124
     * should be obtained by automatic analysis.
 
125
     */
 
126
    public MethodDescriptor[] getMethodDescriptors() {
 
127
        return new MethodDescriptor[0];
 
128
    }
 
129
 
 
130
}