update dev300-m58
[ooovba.git] / scripting / workben / installer / Navigation.java
blob609b43798553b08ee16114c67a1a82cc5eed9434
1 package installer;
3 /*
4 * Navigation.java
6 * Created on 04 July 2002, 15:10
7 */
9 /**
11 * @author mike
13 public class Navigation extends javax.swing.JPanel {
15 /** Creates new form Navigation */
16 public Navigation() {
17 initComponents();
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.
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();
30 setLayout(new java.awt.GridBagLayout());
31 java.awt.GridBagConstraints gridBagConstraints1;
33 navBack.setText("<< Back");
34 gridBagConstraints1 = new java.awt.GridBagConstraints();
35 add(navBack, gridBagConstraints1);
37 navNext.setText("Next >>");
38 gridBagConstraints1 = new java.awt.GridBagConstraints();
39 gridBagConstraints1.gridx = 2;
40 gridBagConstraints1.gridy = 0;
41 add(navNext, gridBagConstraints1);
43 navCancel.setText("Cancel");
44 gridBagConstraints1 = new java.awt.GridBagConstraints();
45 gridBagConstraints1.gridx = 6;
46 gridBagConstraints1.gridy = 0;
47 add(navCancel, gridBagConstraints1);
49 }//GEN-END:initComponents
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