alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

package org.netbeans.test.java.testsources;

/*
 * Test.java
 *
 * Created on March 30, 2001, 10:18 AM
 */

/**
 *
 * @author  jb105785
 */
public class WalkThrough extends JFrame implements java.io.Serializable, Runnable {
    
    /** Creates new form Test */
    public WalkThrough() {
        initComponents();
        Vector v;
        
    }
    
    /** 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() {
        buttonGroup1 = new javax.swing.ButtonGroup();
        jPanel1 = new javax.swing.JPanel();
        jPanel2 = new javax.swing.JPanel();
        jTabbedPane1 = new javax.swing.JTabbedPane();
        jComboBox2 = new javax.swing.JComboBox();
        jComboBox3 = new javax.swing.JComboBox();
        jScrollPane1 = new javax.swing.JScrollPane();
        jPanel3 = new javax.swing.JPanel();
        jButton1 = new javax.swing.JButton();
        choice1 = new Choice();
        scrollbar1 = new java.awt.Scrollbar();
        panel1 = new java.awt.Panel();
        
        
        addWindowListener(new java.awt.event.WindowAdapter() {
            public void windowClosing(java.awt.event.WindowEvent evt) {
                exitForm(evt);
            }
        });
        
        jPanel1.add(jPanel2);
        
        jTabbedPane1.addTab("jComboBox2", jComboBox2);
        
        jPanel1.add(jTabbedPane1);
        
        jPanel1.add(jComboBox3);
        
        jPanel1.add(jScrollPane1);
        
        getContentPane().add(jPanel1, java.awt.BorderLayout.CENTER);
        
        jButton1.setText("jButton1");
        jButton1.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                jButton1ActionPerformed(evt);
            }
        });
        
        jPanel3.add(jButton1);
        
        jPanel3.add(choice1);
        
        jPanel3.add(scrollbar1);
        
        jPanel3.add(panel1);
        
        getContentPane().add(jPanel3, java.awt.BorderLayout.NORTH);
        
        pack();
    }
    
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
        // Add your handling code here:
    }
    
    /** Exit the Application */
    private void exitForm(java.awt.event.WindowEvent evt) {
        System.exit(0);
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        //new Test().show();
    }
    
    public void run() {
        Method m;
    }
    
    // Variables declaration - do not modify
    private ButtonGroup buttonGroup1;
    private JPanel jPanel1;
    private JPanel jPanel2;
    private javax.swing.JTabbedPane jTabbedPane1;
    private javax.swing.JComboBox jComboBox2;
    private javax.swing.JComboBox jComboBox3;
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JPanel jPanel3;
    private javax.swing.JButton jButton1;
    private Choice choice1;
    private java.awt.Scrollbar scrollbar1;
    private java.awt.Panel panel1;
    // End of variables declaration
    
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.