01: /*
02: * $Header: /cvs/j3dfly/J3dEditor/src/org/jdesktop/j3dedit/scenegrapheditor/AboutPanel.java,v 1.1 2005/04/20 22:20:43 paulby Exp $
03: *
04: * Sun Public License Notice
05: *
06: * The contents of this file are subject to the Sun Public License Version
07: * 1.0 (the "License"). You may not use this file except in compliance with
08: * the License. A copy of the License is available at http://www.sun.com/
09: *
10: * The Original Code is the Java 3D(tm) Scene Graph Editor.
11: * The Initial Developer of the Original Code is Paul Byrne.
12: * Portions created by Paul Byrne are Copyright (C) 2002.
13: * All Rights Reserved.
14: *
15: * Contributor(s): Paul Byrne.
16: *
17: **/
18: package org.jdesktop.j3dedit.scenegrapheditor;
19:
20: /**
21: *
22: * @author Paul Byrne
23: * @version 1.5, 01/18/02
24: */
25: public class AboutPanel extends javax.swing.JPanel {
26:
27: /** Creates new form AboutPanel */
28: public AboutPanel() {
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 FormEditor.
36: */
37: private void initComponents() {//GEN-BEGIN:initComponents
38: jPanel1 = new javax.swing.JPanel();
39: jLabel1 = new javax.swing.JLabel();
40: jLabel2 = new javax.swing.JLabel();
41: jLabel3 = new javax.swing.JLabel();
42: setLayout(new java.awt.BorderLayout());
43:
44: jPanel1.setLayout(new java.awt.GridBagLayout());
45: java.awt.GridBagConstraints gridBagConstraints1;
46: jPanel1.setBorder(new javax.swing.border.SoftBevelBorder(0));
47:
48: jLabel1.setText("Java3D Editor");
49: jLabel1.setFont(new java.awt.Font("SansSerif", 1, 18));
50: gridBagConstraints1 = new java.awt.GridBagConstraints();
51: jPanel1.add(jLabel1, gridBagConstraints1);
52:
53: jLabel2.setText("by Paul Byrne, Sun Microsystems");
54: gridBagConstraints1 = new java.awt.GridBagConstraints();
55: gridBagConstraints1.gridx = 0;
56: gridBagConstraints1.gridy = 1;
57: jPanel1.add(jLabel2, gridBagConstraints1);
58:
59: jLabel3.setText("Icons by Tim Boudreau, Sun Microsystems");
60: gridBagConstraints1 = new java.awt.GridBagConstraints();
61: gridBagConstraints1.gridx = 0;
62: gridBagConstraints1.gridy = 2;
63: jPanel1.add(jLabel3, gridBagConstraints1);
64:
65: add(jPanel1, java.awt.BorderLayout.CENTER);
66:
67: }//GEN-END:initComponents
68:
69: // Variables declaration - do not modify//GEN-BEGIN:variables
70: private javax.swing.JPanel jPanel1;
71: private javax.swing.JLabel jLabel1;
72: private javax.swing.JLabel jLabel2;
73: private javax.swing.JLabel jLabel3;
74: // End of variables declaration//GEN-END:variables
75:
76: }
|