KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > versioning > system > cvss > ui > actions > 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.versioning.system.cvss.ui.actions.checkout;
21
22 import javax.swing.Icon JavaDoc;
23 import javax.swing.JOptionPane JavaDoc;
24
25 /**
26  *
27  * @author Petr Kuzel
28  */

29 final class CheckoutCompletedPanel extends javax.swing.JPanel JavaDoc {
30
31     /** Creates new form CheckoutCompletedPanel */
32     public CheckoutCompletedPanel() {
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         java.awt.GridBagConstraints JavaDoc gridBagConstraints;
44
45         setLayout(new java.awt.GridBagLayout JavaDoc());
46
47         org.openide.awt.Mnemonics.setLocalizedText(jLabel1, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK1001"));
48         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
49         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
50         gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
51         gridBagConstraints.weightx = 1.0;
52         gridBagConstraints.insets = new java.awt.Insets JavaDoc(0, 3, 3, 0);
53         add(jLabel1, gridBagConstraints);
54
55         org.openide.awt.Mnemonics.setLocalizedText(againCheckBox, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK1002"));
56         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
57         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
58         gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
59         gridBagConstraints.insets = new java.awt.Insets JavaDoc(3, 3, 3, 0);
60         add(againCheckBox, gridBagConstraints);
61
62         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
63         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
64         gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
65         gridBagConstraints.weighty = 1.0;
66         add(jPanel1, gridBagConstraints);
67
68         org.openide.awt.Mnemonics.setLocalizedText(openButton, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK1003"));
69         openButton.setToolTipText(java.util.ResourceBundle.getBundle("org/netbeans/modules/versioning/system/cvss/ui/actions/checkout/Bundle").getString("TT_OpenProject"));
70         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
71         gridBagConstraints.anchor = java.awt.GridBagConstraints.EAST;
72         gridBagConstraints.weightx = 1.0;
73         gridBagConstraints.insets = new java.awt.Insets JavaDoc(3, 0, 0, 3);
74         add(openButton, gridBagConstraints);
75
76         org.openide.awt.Mnemonics.setLocalizedText(createButton, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK1004"));
77         createButton.setToolTipText(java.util.ResourceBundle.getBundle("org/netbeans/modules/versioning/system/cvss/ui/actions/checkout/Bundle").getString("TT_CreateProject"));
78         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
79         gridBagConstraints.insets = new java.awt.Insets JavaDoc(3, 3, 0, 3);
80         add(createButton, gridBagConstraints);
81
82         org.openide.awt.Mnemonics.setLocalizedText(closeButton, org.openide.util.NbBundle.getMessage(CheckoutCompletedPanel.class, "BK1005"));
83         closeButton.setToolTipText(java.util.ResourceBundle.getBundle("org/netbeans/modules/versioning/system/cvss/ui/actions/checkout/Bundle").getString("TT_Close"));
84         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
85         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
86         gridBagConstraints.insets = new java.awt.Insets JavaDoc(3, 3, 0, 0);
87         add(closeButton, gridBagConstraints);
88
89     }
90     // </editor-fold>//GEN-END:initComponents
91

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

102 }
103
Popular Tags