01: /*
02: * $Header: /cvs/j3dfly/J3dEditor/src/org/jdesktop/j3dedit/scenegrapheditor/SplashPanel.java,v 1.1 2005/04/20 22:20:49 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: * @author Paul Byrne
22: * @version 1.5, 01/18/02
23: */
24: public class SplashPanel extends javax.swing.JPanel {
25:
26: /** Creates new form SplashPanel */
27: public SplashPanel() {
28: initComponents();
29: }
30:
31: /** This method is called from within the constructor to
32: * initialize the form.
33: * WARNING: Do NOT modify this code. The content of this method is
34: * always regenerated by the FormEditor.
35: */
36: private void initComponents() {//GEN-BEGIN:initComponents
37: jPanel1 = new javax.swing.JPanel();
38: jLabel1 = new javax.swing.JLabel();
39: setLayout(new java.awt.BorderLayout());
40:
41: jPanel1.setPreferredSize(new java.awt.Dimension(300, 200));
42: jPanel1.setMinimumSize(new java.awt.Dimension(300, 200));
43:
44: jLabel1.setText("Please Wait");
45: jPanel1.add(jLabel1);
46:
47: add(jPanel1, java.awt.BorderLayout.CENTER);
48:
49: }//GEN-END:initComponents
50:
51: // Variables declaration - do not modify//GEN-BEGIN:variables
52: private javax.swing.JPanel jPanel1;
53: private javax.swing.JLabel jLabel1;
54: // End of variables declaration//GEN-END:variables
55:
56: }
|