KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xml > wsdl > ui > view > ServiceAndPortConfigurationPanel


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-2007 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 /*
21  * ServiceAndPortConfigurationPanel.java
22  *
23  * Created on August 25, 2006, 2:55 PM
24  */

25
26 package org.netbeans.modules.xml.wsdl.ui.view;
27
28 /**
29  *
30  * @author radval
31  */

32 public class ServiceAndPortConfigurationPanel extends javax.swing.JPanel JavaDoc {
33     
34     /** Creates new form ServiceAndPortConfigurationPanel */
35     public ServiceAndPortConfigurationPanel() {
36         initComponents();
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         jLabel1 = new javax.swing.JLabel JavaDoc();
47
48         org.openide.awt.Mnemonics.setLocalizedText(jLabel1, org.openide.util.NbBundle.getMessage(ServiceAndPortConfigurationPanel.class, "ServiceAndPortConfigurationPanel.jLabel1.text")); // NOI18N
49

50         org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
51         this.setLayout(layout);
52         layout.setHorizontalGroup(
53             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
54             .add(layout.createSequentialGroup()
55                 .addContainerGap()
56                 .add(jLabel1)
57                 .addContainerGap(321, Short.MAX_VALUE))
58         );
59         layout.setVerticalGroup(
60             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
61             .add(layout.createSequentialGroup()
62                 .addContainerGap()
63                 .add(jLabel1)
64                 .addContainerGap(275, 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     // End of variables declaration//GEN-END:variables
72

73 }
74
Popular Tags