KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > subversion > client > AcceptCertificatePanel


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

25 public class AcceptCertificatePanel extends javax.swing.JPanel JavaDoc {
26
27     /** Creates new form AcceptCertificatePanel */
28     public AcceptCertificatePanel() {
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         jScrollPane1 = new javax.swing.JScrollPane JavaDoc();
40
41         certificatePane.setEditable(false);
42         jScrollPane1.setViewportView(certificatePane);
43         certificatePane.getAccessibleContext().setAccessibleName("text plain");
44
45         org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
46         this.setLayout(layout);
47         layout.setHorizontalGroup(
48             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
49             .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
50                 .addContainerGap()
51                 .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 539, Short.MAX_VALUE)
52                 .addContainerGap())
53         );
54         layout.setVerticalGroup(
55             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
56             .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
57                 .addContainerGap()
58                 .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 211, Short.MAX_VALUE)
59                 .addContainerGap())
60         );
61     }// </editor-fold>//GEN-END:initComponents
62

63     
64     // Variables declaration - do not modify//GEN-BEGIN:variables
65
final javax.swing.JTextPane JavaDoc certificatePane = new javax.swing.JTextPane JavaDoc();
66     private javax.swing.JScrollPane JavaDoc jScrollPane1;
67     // End of variables declaration//GEN-END:variables
68

69 }
70
Popular Tags