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

« back to all changes in this revision

Viewing changes to java/editor/src/org/netbeans/modules/java/editor/codegen/ui/ConstructorPanel.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
 
 
42
package org.netbeans.modules.java.editor.codegen.ui;
 
43
 
 
44
import java.awt.GridBagConstraints;
 
45
import java.util.Collections;
 
46
import java.util.List;
 
47
import javax.lang.model.element.Element;
 
48
import javax.swing.JLabel;
 
49
import javax.swing.JPanel;
 
50
import org.netbeans.api.java.source.ElementHandle;
 
51
import org.netbeans.modules.java.editor.codegen.ConstructorGenerator;
 
52
import org.openide.util.NbBundle;
 
53
 
 
54
/**
 
55
 *
 
56
 * @author  Dusan Balek
 
57
 */
 
58
public class ConstructorPanel extends JPanel {
 
59
    
 
60
    private JLabel constructorSelectorLabel;
 
61
    private ElementSelectorPanel constructorSelector;
 
62
    private JLabel fieldSelectorLabel;    
 
63
    private ElementSelectorPanel fieldSelector;
 
64
    
 
65
    /** Creates new form ConstructorPanel */
 
66
    public ConstructorPanel(ElementNode.Description constructorDescription, ElementNode.Description fieldsDescription) {
 
67
        initComponents();
 
68
        if (constructorDescription != null) {
 
69
            constructorSelectorLabel = new javax.swing.JLabel();
 
70
            GridBagConstraints gridBagConstraints = new GridBagConstraints();
 
71
            gridBagConstraints = new java.awt.GridBagConstraints();
 
72
            gridBagConstraints.gridx = 0;
 
73
            gridBagConstraints.gridy = 0;
 
74
            gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
 
75
            gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
 
76
            gridBagConstraints.insets = new java.awt.Insets(12, 12, 6, 12);
 
77
            add(constructorSelectorLabel, gridBagConstraints);
 
78
            constructorSelector = new ElementSelectorPanel(constructorDescription, false);
 
79
            gridBagConstraints.gridy = 1;
 
80
            gridBagConstraints.weightx = 0.5;
 
81
            gridBagConstraints.weighty = 1.0;
 
82
            gridBagConstraints.insets = new java.awt.Insets(0, 12, 0, 12);
 
83
            add(constructorSelector, gridBagConstraints);
 
84
            constructorSelectorLabel.setText(NbBundle.getMessage(ConstructorGenerator.class, "LBL_super_constructor_select")); //NOI18N
 
85
            constructorSelectorLabel.setLabelFor(constructorSelector);
 
86
        }
 
87
        if (fieldsDescription != null) {
 
88
            fieldSelectorLabel = new javax.swing.JLabel();
 
89
            GridBagConstraints gridBagConstraints = new GridBagConstraints();
 
90
            gridBagConstraints = new java.awt.GridBagConstraints();
 
91
            gridBagConstraints.gridx = 1;
 
92
            gridBagConstraints.gridy = 0;
 
93
            gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
 
94
            gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
 
95
            gridBagConstraints.insets =new java.awt.Insets(12, constructorDescription != null ? 0 : 12, 6, 12);
 
96
            add(fieldSelectorLabel, gridBagConstraints);
 
97
            fieldSelector = new ElementSelectorPanel(fieldsDescription, false);
 
98
            gridBagConstraints.gridy = 1;
 
99
            gridBagConstraints.weightx = 0.5;
 
100
            gridBagConstraints.weighty = 1.0;
 
101
            gridBagConstraints.insets = new java.awt.Insets(0, constructorDescription != null ? 0 : 12, 0, 12);
 
102
            add(fieldSelector, gridBagConstraints);
 
103
            fieldSelectorLabel.setText(NbBundle.getMessage(ConstructorGenerator.class, "LBL_constructor_select")); //NOI18N
 
104
            fieldSelectorLabel.setLabelFor(fieldSelector);
 
105
        }
 
106
        
 
107
        this.getAccessibleContext().setAccessibleDescription(NbBundle.getMessage(ConstructorGenerator.class, "A11Y_Generate_Constructor"));
 
108
    }
 
109
    
 
110
    public ElementHandle<? extends Element> getInheritedConstructor() {
 
111
        if (constructorSelector == null)
 
112
            return null;
 
113
        List<ElementHandle<? extends Element>> handles = constructorSelector.getSelectedElements();
 
114
        return (handles.size() == 1 ? handles.get(0) : null );
 
115
    }
 
116
 
 
117
    public List<ElementHandle<? extends Element>> getInheritedConstructors() {
 
118
        if (constructorSelector == null)
 
119
            return Collections.EMPTY_LIST;
 
120
        return constructorSelector.getSelectedElements();
 
121
    }
 
122
    
 
123
    public List<ElementHandle<? extends Element>> getVariablesToInitialize() {
 
124
        if (fieldSelector == null)
 
125
            return null;
 
126
        return ((ElementSelectorPanel)fieldSelector).getSelectedElements();
 
127
    }
 
128
 
 
129
    /** This method is called from within the constructor to
 
130
     * initialize the form.
 
131
     * WARNING: Do NOT modify this code. The content of this method is
 
132
     * always regenerated by the Form Editor.
 
133
     */
 
134
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
 
135
    private void initComponents() {
 
136
        java.awt.GridBagConstraints gridBagConstraints;
 
137
 
 
138
        setLayout(new java.awt.GridBagLayout());
 
139
    }// </editor-fold>//GEN-END:initComponents
 
140
    
 
141
    
 
142
    // Variables declaration - do not modify//GEN-BEGIN:variables
 
143
    // End of variables declaration//GEN-END:variables
 
144
 
 
145
}