KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > websphere6 > dd > loaders > ui > WSAuthTablePanel


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.j2ee.websphere6.dd.loaders.ui;
20
21 /**
22  *
23  * @author dlm198383
24  */

25 public class WSAuthTablePanel extends javax.swing.JPanel JavaDoc {
26
27     /** Creates new form WSAuthTablePanel */
28     public WSAuthTablePanel() {
29         initComponents();
30     }
31
32     /** This method is called from within the constructor to
33      * initialize the form.
34      * WARNING: Do NOT modify this code. The content of this method is
35      * always regenerated by the Form Editor.
36      */

37     // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
38
private void initComponents() {
39         jLabel1 = new javax.swing.JLabel JavaDoc();
40         jTextField1 = new javax.swing.JTextField JavaDoc();
41
42         jLabel1.setText("Authorization Table Name:");
43
44         jTextField1.setText("Authorization");
45
46         org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
47         this.setLayout(layout);
48         layout.setHorizontalGroup(
49             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
50             .add(layout.createSequentialGroup()
51                 .addContainerGap()
52                 .add(jLabel1)
53                 .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
54                 .add(jTextField1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 117, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
55                 .addContainerGap(142, Short.MAX_VALUE))
56         );
57         layout.setVerticalGroup(
58             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
59             .add(layout.createSequentialGroup()
60                 .addContainerGap()
61                 .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
62                     .add(jLabel1)
63                     .add(jTextField1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
64                 .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
65         );
66     }// </editor-fold>//GEN-END:initComponents
67

68     
69     // Variables declaration - do not modify//GEN-BEGIN:variables
70
private javax.swing.JLabel JavaDoc jLabel1;
71     private javax.swing.JTextField JavaDoc jTextField1;
72     // End of variables declaration//GEN-END:variables
73

74 }
75
Popular Tags