KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > css > actions > CSSWizardType


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 package org.netbeans.modules.css.actions;
20
21 /**
22  *
23  * @author pkuzel
24  * @version 1.0
25  */

26 public class CSSWizardType extends javax.swing.JPanel JavaDoc {
27
28     /** Serial Version UID */
29     private static final long serialVersionUID = -1160568948597759523L;
30
31     /** Creates new form CSSWizardType */
32     public CSSWizardType() {
33         initComponents ();
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 FormEditor.
40      */

41     private void initComponents() {//GEN-BEGIN:initComponents
42
java.awt.GridBagConstraints JavaDoc gridBagConstraints;
43
44         jTextArea1 = new javax.swing.JTextArea JavaDoc();
45         documentRadioButton = new javax.swing.JRadioButton JavaDoc();
46         jTextArea2 = new javax.swing.JTextArea JavaDoc();
47         dataRadioButton = new javax.swing.JRadioButton JavaDoc();
48
49         setLayout(new java.awt.GridBagLayout JavaDoc());
50
51         add(jTextArea1, new java.awt.GridBagConstraints JavaDoc());
52
53         documentRadioButton.setText(Util.THIS.getString ("PROP_css_wizard_type_document"));
54         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
55         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
56         gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
57         add(documentRadioButton, gridBagConstraints);
58
59         add(jTextArea2, new java.awt.GridBagConstraints JavaDoc());
60
61         dataRadioButton.setText(Util.THIS.getString ("PROP_css_wizard_type_data"));
62         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
63         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
64         gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
65         add(dataRadioButton, gridBagConstraints);
66
67     }//GEN-END:initComponents
68

69
70     // Variables declaration - do not modify//GEN-BEGIN:variables
71
private javax.swing.JRadioButton JavaDoc dataRadioButton;
72     private javax.swing.JRadioButton JavaDoc documentRadioButton;
73     private javax.swing.JTextArea JavaDoc jTextArea2;
74     private javax.swing.JTextArea JavaDoc jTextArea1;
75     // End of variables declaration//GEN-END:variables
76

77 }
78
Popular Tags