KickJava   Java API By Example, From Geeks To Geeks.

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

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

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

91 }
92
93
Popular Tags