KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > subversion > ui > repository > RepositoryDialogPanel


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.subversion.ui.repository;
20
21 /**
22  *
23  * @author Tomas Stupka
24  */

25 public class RepositoryDialogPanel extends javax.swing.JPanel JavaDoc {
26
27     /** Creates new form CorectAuthPanel */
28     public RepositoryDialogPanel() {
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
40         org.jdesktop.layout.GroupLayout panelLayout = new org.jdesktop.layout.GroupLayout(panel);
41         panel.setLayout(panelLayout);
42         panelLayout.setHorizontalGroup(
43             panelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
44             .add(0, 702, Short.MAX_VALUE)
45         );
46         panelLayout.setVerticalGroup(
47             panelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
48             .add(0, 378, Short.MAX_VALUE)
49         );
50
51         org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
52         this.setLayout(layout);
53         layout.setHorizontalGroup(
54             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
55             .add(layout.createSequentialGroup()
56                 .addContainerGap()
57                 .add(panel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
58                 .addContainerGap())
59         );
60         layout.setVerticalGroup(
61             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
62             .add(layout.createSequentialGroup()
63                 .addContainerGap()
64                 .add(panel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
65                 .addContainerGap())
66         );
67     }// </editor-fold>//GEN-END:initComponents
68

69     
70     // Variables declaration - do not modify//GEN-BEGIN:variables
71
final javax.swing.JPanel JavaDoc panel = new javax.swing.JPanel JavaDoc();
72     // End of variables declaration//GEN-END:variables
73

74 }
75
Popular Tags