KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > subversion > ui > wizards > repositorystep > RepositoryStepPanel


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.subversion.ui.wizards.repositorystep;
21
22 /**
23  *
24  * @author Petr Kuzel
25  */

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

38     // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
39
private void initComponents() {
40
41         setMinimumSize(new java.awt.Dimension JavaDoc(630, 232));
42         java.util.ResourceBundle JavaDoc bundle = java.util.ResourceBundle.getBundle("org/netbeans/modules/subversion/ui/wizards/repositorystep/Bundle"); // NOI18N
43
setName(bundle.getString("BK2018")); // NOI18N
44
setPreferredSize(new java.awt.Dimension JavaDoc(630, 232));
45         progressPanel.setLayout(new java.awt.BorderLayout JavaDoc());
46
47         org.jdesktop.layout.GroupLayout repositoryPanelLayout = new org.jdesktop.layout.GroupLayout(repositoryPanel);
48         repositoryPanel.setLayout(repositoryPanelLayout);
49         repositoryPanelLayout.setHorizontalGroup(
50             repositoryPanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
51             .add(0, 630, Short.MAX_VALUE)
52         );
53         repositoryPanelLayout.setVerticalGroup(
54             repositoryPanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
55             .add(0, 174, Short.MAX_VALUE)
56         );
57
58         org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
59         this.setLayout(layout);
60         layout.setHorizontalGroup(
61             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
62             .add(repositoryPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
63             .add(progressPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 630, Short.MAX_VALUE)
64         );
65         layout.setVerticalGroup(
66             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
67             .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
68                 .add(repositoryPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
69                 .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
70                 .add(progressPanel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 41, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
71                 .addContainerGap())
72         );
73     }// </editor-fold>//GEN-END:initComponents
74

75     
76     // Variables declaration - do not modify//GEN-BEGIN:variables
77
final javax.swing.JPanel JavaDoc progressPanel = new javax.swing.JPanel JavaDoc();
78     final javax.swing.JPanel JavaDoc repositoryPanel = new javax.swing.JPanel JavaDoc();
79     // End of variables declaration//GEN-END:variables
80

81 }
82
Popular Tags