KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > db > explorer > dlg > ConnectProgressDialog


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.db.explorer.dlg;
21
22 import java.awt.BorderLayout JavaDoc;
23 import javax.swing.Box JavaDoc;
24
25 /**
26  *
27  * @author Andrei Badea
28  */

29 public class ConnectProgressDialog extends javax.swing.JPanel JavaDoc {
30
31     /** Creates new form ConnectProgressDialog */
32     public ConnectProgressDialog() {
33         initComponents();
34         add(BorderLayout.NORTH, Box.createVerticalStrut(11));
35         add(BorderLayout.EAST, Box.createHorizontalStrut(10));
36         add(BorderLayout.WEST, Box.createHorizontalStrut(10));
37     }
38
39     /** This method is called from within the constructor to
40      * initialize the form.
41      * WARNING: Do NOT modify this code. The content of this method is
42      * always regenerated by the Form Editor.
43      */

44     // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
45
private void initComponents() {
46         jTabbedPane1 = new javax.swing.JTabbedPane JavaDoc();
47
48         setLayout(new java.awt.BorderLayout JavaDoc());
49
50         add(jTabbedPane1, java.awt.BorderLayout.CENTER);
51
52     }
53     // </editor-fold>//GEN-END:initComponents
54

55     
56     // Variables declaration - do not modify//GEN-BEGIN:variables
57
private javax.swing.JTabbedPane JavaDoc jTabbedPane1;
58     // End of variables declaration//GEN-END:variables
59

60 }
61
Popular Tags