/* * Q1Pannel.java * * Created on October 20, 2003, 1:57 PM */ /** * * @author brewskie */ public class Q1Pannel extends javax.swing.JPanel { /** Creates new form Q1Pannel */ public Q1Pannel() { initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ private void initComponents() {//GEN-BEGIN:initComponents buttonGroup1 = new javax.swing.ButtonGroup(); jLabel1 = new javax.swing.JLabel(); jRadioButton1 = new javax.swing.JRadioButton(); jRadioButton2 = new javax.swing.JRadioButton(); jRadioButton3 = new javax.swing.JRadioButton(); jRadioButton4 = new javax.swing.JRadioButton(); setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout()); jLabel1.setText("What is the air-speed velocity of unlaiden swallow?"); add(jLabel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 10, 300, -1)); jRadioButton1.setText("20 mi/h"); add(jRadioButton1, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 30, -1, -1)); jRadioButton2.setText("60 k/m"); add(jRadioButton2, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 60, -1, -1)); jRadioButton3.setText("1 m/s"); add(jRadioButton3, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 90, -1, -1)); jRadioButton4.setText("Not enough Information Given"); add(jRadioButton4, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 120, -1, -1)); }//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.ButtonGroup buttonGroup1; private javax.swing.JLabel jLabel1; private javax.swing.JRadioButton jRadioButton1; private javax.swing.JRadioButton jRadioButton2; private javax.swing.JRadioButton jRadioButton3; private javax.swing.JRadioButton jRadioButton4; // End of variables declaration//GEN-END:variables }