KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > subversion > ui > wizards > importstep > PreviewPanel


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

25 public class PreviewPanel extends javax.swing.JPanel JavaDoc {
26
27     /** Creates new form ImportStepPreviewPanel */
28     public PreviewPanel() {
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         setName(org.openide.util.NbBundle.getMessage(PreviewPanel.class, "CTL_Import_Preview_Name")); // NOI18N
41

42         tablePanel.setName(""); // NOI18N
43

44         org.jdesktop.layout.GroupLayout tablePanelLayout = new org.jdesktop.layout.GroupLayout(tablePanel);
45         tablePanel.setLayout(tablePanelLayout);
46         tablePanelLayout.setHorizontalGroup(
47             tablePanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
48             .add(0, 603, Short.MAX_VALUE)
49         );
50         tablePanelLayout.setVerticalGroup(
51             tablePanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
52             .add(0, 189, Short.MAX_VALUE)
53         );
54
55         org.openide.awt.Mnemonics.setLocalizedText(tableLabel, org.openide.util.NbBundle.getMessage(PreviewPanel.class, "BK3001")); // NOI18N
56

57         org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
58         this.setLayout(layout);
59         layout.setHorizontalGroup(
60             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
61             .add(layout.createSequentialGroup()
62                 .addContainerGap()
63                 .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
64                     .add(tablePanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
65                     .add(tableLabel))
66                 .addContainerGap())
67         );
68         layout.setVerticalGroup(
69             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
70             .add(layout.createSequentialGroup()
71                 .addContainerGap()
72                 .add(tableLabel)
73                 .add(9, 9, 9)
74                 .add(tablePanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
75                 .addContainerGap())
76         );
77
78         tableLabel.getAccessibleContext().setAccessibleName("Commit Files");
79         tableLabel.getAccessibleContext().setAccessibleDescription("Commit Files");
80     }// </editor-fold>//GEN-END:initComponents
81

82     
83     // Variables declaration - do not modify//GEN-BEGIN:variables
84
final javax.swing.JLabel JavaDoc tableLabel = new javax.swing.JLabel JavaDoc();
85     final javax.swing.JPanel JavaDoc tablePanel = new javax.swing.JPanel JavaDoc();
86     // End of variables declaration//GEN-END:variables
87

88 }
89
Popular Tags