KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > websvc > dev > wizard > WebServiceMethodChooserPanel


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.websvc.dev.wizard;
21
22 import org.openide.WizardDescriptor;
23 import org.openide.util.HelpCtx;
24
25 /**
26  *
27  * @author radko
28  */

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

41     // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
42
private void initComponents() {
43         jScrollPane1 = new javax.swing.JScrollPane JavaDoc();
44         jList1 = new javax.swing.JList JavaDoc();
45
46         jScrollPane1.setViewportView(jList1);
47
48         org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
49         this.setLayout(layout);
50         layout.setHorizontalGroup(
51             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
52             .add(layout.createSequentialGroup()
53                 .addContainerGap()
54                 .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 307, Short.MAX_VALUE)
55                 .addContainerGap())
56         );
57         layout.setVerticalGroup(
58             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
59             .add(layout.createSequentialGroup()
60                 .addContainerGap()
61                 .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 262, Short.MAX_VALUE)
62                 .addContainerGap())
63         );
64     }// </editor-fold>//GEN-END:initComponents
65

66     HelpCtx getHelpCtx() {
67         return null;
68     }
69
70     void read(WizardDescriptor wizardDescriptor) {
71 // throw new UnsupportedOperationException("Not yet implemented");
72
}
73
74     void store(WizardDescriptor d) {
75 // throw new UnsupportedOperationException("Not yet implemented");
76
}
77
78     boolean valid(WizardDescriptor wizardDescriptor) {
79         return true;
80     }
81
82     void validate(WizardDescriptor wizardDescriptor) {
83 // throw new UnsupportedOperationException("Not yet implemented");
84
}
85     
86     // Variables declaration - do not modify//GEN-BEGIN:variables
87
private javax.swing.JList JavaDoc jList1;
88     private javax.swing.JScrollPane JavaDoc jScrollPane1;
89     // End of variables declaration//GEN-END:variables
90

91 }
92
Popular Tags