xref: /AOO41X/main/scripting/workben/installer/Navigation.java (revision 1ecadb572e7010ff3b3382ad9bf179dbc6efadbb)
1 package installer;
2 
3 /*
4  * Navigation.java
5  *
6  * Created on 04 July 2002, 15:10
7  */
8 
9 /**
10  *
11  * @author  mike
12  */
13 public class Navigation extends javax.swing.JPanel {
14 
15     /** Creates new form Navigation */
16     public Navigation() {
17         initComponents();
18     }
19 
20     /** This method is called from within the constructor to
21      * initialize the form.
22      * WARNING: Do NOT modify this code. The content of this method is
23      * always regenerated by the Form Editor.
24      */
25     private void initComponents() {//GEN-BEGIN:initComponents
26         navBack = new javax.swing.JButton();
27         navNext = new javax.swing.JButton();
28         navCancel = new javax.swing.JButton();
29 
30         setLayout(new java.awt.GridBagLayout());
31         java.awt.GridBagConstraints gridBagConstraints1;
32 
33         navBack.setText("<< Back");
34         gridBagConstraints1 = new java.awt.GridBagConstraints();
35         add(navBack, gridBagConstraints1);
36 
37         navNext.setText("Next >>");
38         gridBagConstraints1 = new java.awt.GridBagConstraints();
39         gridBagConstraints1.gridx = 2;
40         gridBagConstraints1.gridy = 0;
41         add(navNext, gridBagConstraints1);
42 
43         navCancel.setText("Cancel");
44         gridBagConstraints1 = new java.awt.GridBagConstraints();
45         gridBagConstraints1.gridx = 6;
46         gridBagConstraints1.gridy = 0;
47         add(navCancel, gridBagConstraints1);
48 
49     }//GEN-END:initComponents
50 
51 
52     // Variables declaration - do not modify//GEN-BEGIN:variables
53     private javax.swing.JButton navBack;
54     private javax.swing.JButton navNext;
55     private javax.swing.JButton navCancel;
56     // End of variables declaration//GEN-END:variables
57 
58 }
59