Source code: leJOS_Interface/Installer/Dialogs/IntroPane.java
1 /*
2 * IntroPane.java
3 *
4 * Created on February 18, 2001, 8:30 AM
5 */
6
7 package leJOS_Interface.Installer.Dialogs;
8
9 /**
10 *
11 * @author Default
12 * @version
13 */
14 public class IntroPane extends javax.swing.JPanel {
15
16 /** Creates new form IntroPane */
17 public IntroPane() {
18 initComponents ();
19 }
20
21 /** This method is called from within the constructor to
22 * initialize the form.
23 * WARNING: Do NOT modify this code. The content of this method is
24 * always regenerated by the FormEditor.
25 */
26 private void initComponents () {//GEN-BEGIN:initComponents
27 jScrollPane1 = new javax.swing.JScrollPane ();
28 jTextPane1 = new javax.swing.JTextPane ();
29 jTextPane1.setEditable(false);
30 jLabel1 = new javax.swing.JLabel ();
31 setLayout (new java.awt.BorderLayout ());
32
33
34 jTextPane1.setText ("Welcome to the leJOS Visual Interface installer. \nThis will install LVI on your computer as an executable jar file.\nThen all you have to do is click on the file.\n\nSystem Requirements:\n\nJava 2 - If you are seeing this, then you have this already!\nleJOS - You must have the leJOS firmware installed and \nworking on your machine.\n\n");
35
36 jScrollPane1.setViewportView (jTextPane1);
37
38
39 add (jScrollPane1, java.awt.BorderLayout.CENTER);
40
41 jLabel1.setText ("Introduction");
42 jLabel1.setHorizontalAlignment (javax.swing.SwingConstants.CENTER);
43 jLabel1.setFont (new java.awt.Font ("Dialog", 0, 18));
44
45
46 add (jLabel1, java.awt.BorderLayout.NORTH);
47
48 }//GEN-END:initComponents
49
50
51 // Variables declaration - do not modify//GEN-BEGIN:variables
52 private javax.swing.JScrollPane jScrollPane1;
53 private javax.swing.JTextPane jTextPane1;
54 private javax.swing.JLabel jLabel1;
55 // End of variables declaration//GEN-END:variables
56
57 }