Source code: org/jabbee/ui/panels/AdditionalServices.java
1 /*
2 * AdditionalServices.java
3 *
4 * Created on October 28, 2002, 2:40 PM
5 *
6 *
7 * License:
8 *
9 * The contents of this file are subject to the Jabber Open Source
10 * License Version 1.0 (the "License"). You may not copy or use this
11 * file, in either source code or executable form, except in compliance
12 * with the License. You may obtain a copy of the License at
13 * http://www.jabber.com/license/ or at http://www.opensource.org/.
14 * Software distributed under the License is distributed on an "AS IS"
15 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
16 * the License for the specific language governing rights and limitations
17 * under the License.
18 *
19 * Copyrights:
20 *
21 * Portions created by or assigned to Jabber.com, Inc. are Copyright
22 * (c) 1999-2000 Jabber.com, Inc. All Rights Reserved. Contact information
23 * for Jabber.com, Inc. is available at http://www.jabber.com/. Portions
24 * Copyright (c) 1998-1999 Jeremie Miller.
25 *
26 * Acknowledgements:
27 *
28 * Special thanks to the Jabber Open Source Contributors for their
29 * suggestions and support of Jabber.
30 *
31 */
32
33 package org.jabbee.ui.panels;
34
35 /**
36 *
37 * @author Gregory Kaczmarczyk
38 *
39 * @version 0.01
40 */
41 public final class AdditionalServices extends javax.swing.JPanel {
42
43 /** Creates new form AdditionalServices */
44 public AdditionalServices() {
45 initComponents();
46 }
47
48 /** This method is called from within the constructor to
49 * initialize the form.
50 * WARNING: Do NOT modify this code. The content of this method is
51 * always regenerated by the Form Editor.
52 */
53 private void initComponents() {//GEN-BEGIN:initComponents
54 java.awt.GridBagConstraints gridBagConstraints;
55
56 jLabel1 = new javax.swing.JLabel();
57 jLabel2 = new javax.swing.JLabel();
58
59 setLayout(new java.awt.GridBagLayout());
60
61 jLabel1.setText("Not available yet...");
62 add(jLabel1, new java.awt.GridBagConstraints());
63
64 jLabel2.setText("( irc, aim, yahoo, etc... )");
65 gridBagConstraints = new java.awt.GridBagConstraints();
66 gridBagConstraints.gridy = 1;
67 add(jLabel2, gridBagConstraints);
68
69 }//GEN-END:initComponents
70
71
72 // Variables declaration - do not modify//GEN-BEGIN:variables
73 private javax.swing.JLabel jLabel2;
74 private javax.swing.JLabel jLabel1;
75 // End of variables declaration//GEN-END:variables
76
77 }