KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > blueprints > ui > projects > PanelOptionsVisual


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
20 package org.netbeans.modules.j2ee.blueprints.ui.projects;
21
22 import org.openide.WizardDescriptor;
23 import org.openide.util.NbBundle;
24
25 public class PanelOptionsVisual extends javax.swing.JPanel JavaDoc {
26
27     private PanelConfigureProject panel;
28
29     /** Creates new form PanelOptionsVisual */
30     public PanelOptionsVisual(PanelConfigureProject panel) {
31         initComponents();
32         this.panel = panel;
33     }
34
35     /** This method is called from within the constructor to
36      * initialize the form.
37      * WARNING: Do NOT modify this code. The content of this method is
38      * always regenerated by the Form Editor.
39      */

40     private void initComponents() {//GEN-BEGIN:initComponents
41
java.awt.GridBagConstraints JavaDoc gridBagConstraints;
42
43         setAsMainCheckBox = new javax.swing.JCheckBox JavaDoc();
44         jScrollPane1 = new javax.swing.JScrollPane JavaDoc();
45
46         setLayout(new java.awt.GridBagLayout JavaDoc());
47
48         setAsMainCheckBox.setMnemonic(org.openide.util.NbBundle.getMessage(PanelOptionsVisual.class, "LBL_NWP1_SetAsMain_CheckBoxMnemonic").charAt(0));
49         setAsMainCheckBox.setSelected(true);
50         setAsMainCheckBox.setText(org.openide.util.NbBundle.getMessage(PanelOptionsVisual.class, "LBL_NWP1_SetAsMain_CheckBox"));
51         setAsMainCheckBox.setActionCommand("Set as Main Project");
52         setAsMainCheckBox.setMargin(new java.awt.Insets JavaDoc(0, 0, 0, 0));
53         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
54         gridBagConstraints.gridx = 0;
55         gridBagConstraints.gridy = 0;
56         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
57         gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
58         gridBagConstraints.insets = new java.awt.Insets JavaDoc(0, 0, 11, 0);
59         add(setAsMainCheckBox, gridBagConstraints);
60         setAsMainCheckBox.getAccessibleContext().setAccessibleDescription(org.openide.util.NbBundle.getMessage(PanelOptionsVisual.class, "ACS_LBL_NWP1_SetAsMain_A11YDesc"));
61
62         jScrollPane1.setBorder(null);
63         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
64         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
65         gridBagConstraints.gridheight = java.awt.GridBagConstraints.REMAINDER;
66         gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
67         gridBagConstraints.weightx = 1.0;
68         gridBagConstraints.weighty = 1.0;
69         gridBagConstraints.insets = new java.awt.Insets JavaDoc(0, 12, 0, 0);
70         add(jScrollPane1, gridBagConstraints);
71
72     }//GEN-END:initComponents
73

74     boolean valid(WizardDescriptor wizardDescriptor) {
75         return true;
76     }
77
78     void store(WizardDescriptor d) {
79         d.putProperty(WizardProperties.SET_AS_MAIN, setAsMainCheckBox.isSelected() ? Boolean.TRUE : Boolean.FALSE );
80     }
81     
82     void read(WizardDescriptor d) {
83     }
84     
85     // Variables declaration - do not modify//GEN-BEGIN:variables
86
private javax.swing.JScrollPane JavaDoc jScrollPane1;
87     private javax.swing.JCheckBox JavaDoc setAsMainCheckBox;
88     // End of variables declaration//GEN-END:variables
89

90 }
91
92
Popular Tags