KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > subversion > ui > checkout > CheckoutCompletedPanel


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.checkout;
21
22 import javax.swing.Icon JavaDoc;
23 import javax.swing.JOptionPane JavaDoc;
24 import org.netbeans.modules.subversion.ui.wizards.*;
25
26 /**
27  *
28  * @author Petr Kuzel
29  */

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

42     // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
43
private void initComponents() {
44         java.awt.GridBagConstraints JavaDoc gridBagConstraints;
45
46         setLayout(new java.awt.GridBagLayout JavaDoc());
47
48         org.openide.awt.Mnemonics.setLocalizedText(jLabel1, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK3001")); // NOI18N
49
gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
50         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
51         gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
52         gridBagConstraints.weightx = 1.0;
53         gridBagConstraints.insets = new java.awt.Insets JavaDoc(0, 3, 3, 0);
54         add(jLabel1, gridBagConstraints);
55
56         org.openide.awt.Mnemonics.setLocalizedText(againCheckBox, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK3002")); // NOI18N
57
gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
58         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
59         gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
60         gridBagConstraints.insets = new java.awt.Insets JavaDoc(3, 3, 3, 0);
61         add(againCheckBox, gridBagConstraints);
62
63         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
64         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
65         gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
66         gridBagConstraints.weighty = 1.0;
67         add(jPanel1, gridBagConstraints);
68
69         org.openide.awt.Mnemonics.setLocalizedText(openButton, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK3003")); // NOI18N
70
java.util.ResourceBundle JavaDoc bundle = java.util.ResourceBundle.getBundle("org/netbeans/modules/subversion/ui/checkout/Bundle"); // NOI18N
71
openButton.setToolTipText(bundle.getString("TT_OpenProject")); // NOI18N
72
gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
73         gridBagConstraints.anchor = java.awt.GridBagConstraints.EAST;
74         gridBagConstraints.weightx = 1.0;
75         gridBagConstraints.insets = new java.awt.Insets JavaDoc(3, 0, 0, 3);
76         add(openButton, gridBagConstraints);
77
78         org.openide.awt.Mnemonics.setLocalizedText(createButton, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK3004")); // NOI18N
79
createButton.setToolTipText(bundle.getString("TT_CreateProject")); // NOI18N
80
gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
81         gridBagConstraints.insets = new java.awt.Insets JavaDoc(3, 3, 0, 3);
82         add(createButton, gridBagConstraints);
83
84         org.openide.awt.Mnemonics.setLocalizedText(closeButton, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK3005")); // NOI18N
85
closeButton.setToolTipText(bundle.getString("TT_Close")); // NOI18N
86
gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
87         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
88         gridBagConstraints.insets = new java.awt.Insets JavaDoc(3, 3, 0, 0);
89         add(closeButton, gridBagConstraints);
90
91     }// </editor-fold>//GEN-END:initComponents
92

93     
94     // Variables declaration - do not modify//GEN-BEGIN:variables
95
final javax.swing.JCheckBox JavaDoc againCheckBox = new javax.swing.JCheckBox JavaDoc();
96     final javax.swing.JButton JavaDoc closeButton = new javax.swing.JButton JavaDoc();
97     final javax.swing.JButton JavaDoc createButton = new javax.swing.JButton JavaDoc();
98     final javax.swing.JLabel JavaDoc jLabel1 = new javax.swing.JLabel JavaDoc();
99     final javax.swing.JPanel JavaDoc jPanel1 = new javax.swing.JPanel JavaDoc();
100     final javax.swing.JButton JavaDoc openButton = new javax.swing.JButton JavaDoc();
101     // End of variables declaration//GEN-END:variables
102

103 }
104
Popular Tags