1 19 package org.netbeans.modules.css.actions; 20 21 26 public class CSSWizardType extends javax.swing.JPanel { 27 28 29 private static final long serialVersionUID = -1160568948597759523L; 30 31 32 public CSSWizardType() { 33 initComponents (); 34 } 35 36 41 private void initComponents() { java.awt.GridBagConstraints gridBagConstraints; 43 44 jTextArea1 = new javax.swing.JTextArea (); 45 documentRadioButton = new javax.swing.JRadioButton (); 46 jTextArea2 = new javax.swing.JTextArea (); 47 dataRadioButton = new javax.swing.JRadioButton (); 48 49 setLayout(new java.awt.GridBagLayout ()); 50 51 add(jTextArea1, new java.awt.GridBagConstraints ()); 52 53 documentRadioButton.setText(Util.THIS.getString ("PROP_css_wizard_type_document")); 54 gridBagConstraints = new java.awt.GridBagConstraints (); 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 ()); 60 61 dataRadioButton.setText(Util.THIS.getString ("PROP_css_wizard_type_data")); 62 gridBagConstraints = new java.awt.GridBagConstraints (); 63 gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER; 64 gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST; 65 add(dataRadioButton, gridBagConstraints); 66 67 } 69 70 private javax.swing.JRadioButton dataRadioButton; 72 private javax.swing.JRadioButton documentRadioButton; 73 private javax.swing.JTextArea jTextArea2; 74 private javax.swing.JTextArea jTextArea1; 75 77 } 78 | Popular Tags |