KickJava   Java API By Example, From Geeks To Geeks.

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

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

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

89 }
90
91
Popular Tags