01: /*
02: * $Header: /cvs/j3dfly/J3dEditor/src/org/jdesktop/j3dedit/AboutPanel.java,v 1.1 2005/04/20 22:20:24 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;
19:
20: /**
21: *
22: * @author Paul Byrne
23: * @version 1.2, 12/20/00
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: java.awt.GridBagConstraints gridBagConstraints;
39:
40: jPanel1 = new javax.swing.JPanel();
41: jLabel1 = new javax.swing.JLabel();
42: jLabel2 = new javax.swing.JLabel();
43: jLabel4 = new javax.swing.JLabel();
44: jLabel3 = new javax.swing.JLabel();
45:
46: setLayout(new java.awt.BorderLayout());
47:
48: jPanel1.setLayout(new java.awt.GridBagLayout());
49:
50: jPanel1.setBorder(new javax.swing.border.SoftBevelBorder(
51: javax.swing.border.BevelBorder.RAISED));
52: jLabel1.setFont(new java.awt.Font("SansSerif", 1, 18));
53: jLabel1.setText("Java 3D(tm) Editor");
54: jPanel1.add(jLabel1, new java.awt.GridBagConstraints());
55:
56: jLabel2.setText("by Paul Byrne, Sun Microsystems");
57: gridBagConstraints = new java.awt.GridBagConstraints();
58: gridBagConstraints.gridx = 0;
59: gridBagConstraints.gridy = 1;
60: jPanel1.add(jLabel2, gridBagConstraints);
61:
62: jLabel4
63: .setText("Netbeans integration by Jan Becicka, Sun Microsystem");
64: gridBagConstraints = new java.awt.GridBagConstraints();
65: gridBagConstraints.gridx = 0;
66: gridBagConstraints.gridy = 2;
67: jPanel1.add(jLabel4, gridBagConstraints);
68:
69: jLabel3.setText("Icons by Tim Boudreau, Sun Microsystems");
70: gridBagConstraints = new java.awt.GridBagConstraints();
71: gridBagConstraints.gridx = 0;
72: gridBagConstraints.gridy = 3;
73: jPanel1.add(jLabel3, gridBagConstraints);
74:
75: add(jPanel1, java.awt.BorderLayout.CENTER);
76:
77: }//GEN-END:initComponents
78:
79: // Variables declaration - do not modify//GEN-BEGIN:variables
80: private javax.swing.JPanel jPanel1;
81: private javax.swing.JLabel jLabel4;
82: private javax.swing.JLabel jLabel3;
83: private javax.swing.JLabel jLabel2;
84: private javax.swing.JLabel jLabel1;
85: // End of variables declaration//GEN-END:variables
86:
87: }
|