1*cd519653SAndrew Rist /**************************************************************
2*cd519653SAndrew Rist  *
3*cd519653SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*cd519653SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*cd519653SAndrew Rist  * distributed with this work for additional information
6*cd519653SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*cd519653SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*cd519653SAndrew Rist  * "License"); you may not use this file except in compliance
9*cd519653SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*cd519653SAndrew Rist  *
11*cd519653SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*cd519653SAndrew Rist  *
13*cd519653SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*cd519653SAndrew Rist  * software distributed under the License is distributed on an
15*cd519653SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*cd519653SAndrew Rist  * KIND, either express or implied.  See the License for the
17*cd519653SAndrew Rist  * specific language governing permissions and limitations
18*cd519653SAndrew Rist  * under the License.
19*cd519653SAndrew Rist  *
20*cd519653SAndrew Rist  *************************************************************/
21*cd519653SAndrew Rist 
22cdf0e10cSrcweir package installer;
23cdf0e10cSrcweir 
24cdf0e10cSrcweir /*
25cdf0e10cSrcweir  * Navigation.java
26cdf0e10cSrcweir  *
27cdf0e10cSrcweir  * Created on 04 July 2002, 15:10
28cdf0e10cSrcweir  */
29cdf0e10cSrcweir 
30cdf0e10cSrcweir /**
31cdf0e10cSrcweir  *
32cdf0e10cSrcweir  * @author  mike
33cdf0e10cSrcweir  */
34cdf0e10cSrcweir public class Navigation extends javax.swing.JPanel {
35cdf0e10cSrcweir 
36cdf0e10cSrcweir     /** Creates new form Navigation */
Navigation()37cdf0e10cSrcweir     public Navigation() {
38cdf0e10cSrcweir         initComponents();
39cdf0e10cSrcweir     }
40cdf0e10cSrcweir 
41cdf0e10cSrcweir     /** This method is called from within the constructor to
42cdf0e10cSrcweir      * initialize the form.
43cdf0e10cSrcweir      * WARNING: Do NOT modify this code. The content of this method is
44cdf0e10cSrcweir      * always regenerated by the Form Editor.
45cdf0e10cSrcweir      */
initComponents()46cdf0e10cSrcweir     private void initComponents() {//GEN-BEGIN:initComponents
47cdf0e10cSrcweir         navBack = new javax.swing.JButton();
48cdf0e10cSrcweir         navNext = new javax.swing.JButton();
49cdf0e10cSrcweir         navCancel = new javax.swing.JButton();
50cdf0e10cSrcweir 
51cdf0e10cSrcweir         setLayout(new java.awt.GridBagLayout());
52cdf0e10cSrcweir         java.awt.GridBagConstraints gridBagConstraints1;
53cdf0e10cSrcweir 
54cdf0e10cSrcweir         navBack.setText("<< Back");
55cdf0e10cSrcweir         gridBagConstraints1 = new java.awt.GridBagConstraints();
56cdf0e10cSrcweir         add(navBack, gridBagConstraints1);
57cdf0e10cSrcweir 
58cdf0e10cSrcweir         navNext.setText("Next >>");
59cdf0e10cSrcweir         gridBagConstraints1 = new java.awt.GridBagConstraints();
60cdf0e10cSrcweir         gridBagConstraints1.gridx = 2;
61cdf0e10cSrcweir         gridBagConstraints1.gridy = 0;
62cdf0e10cSrcweir         add(navNext, gridBagConstraints1);
63cdf0e10cSrcweir 
64cdf0e10cSrcweir         navCancel.setText("Cancel");
65cdf0e10cSrcweir         gridBagConstraints1 = new java.awt.GridBagConstraints();
66cdf0e10cSrcweir         gridBagConstraints1.gridx = 6;
67cdf0e10cSrcweir         gridBagConstraints1.gridy = 0;
68cdf0e10cSrcweir         add(navCancel, gridBagConstraints1);
69cdf0e10cSrcweir 
70cdf0e10cSrcweir     }//GEN-END:initComponents
71cdf0e10cSrcweir 
72cdf0e10cSrcweir 
73cdf0e10cSrcweir     // Variables declaration - do not modify//GEN-BEGIN:variables
74cdf0e10cSrcweir     private javax.swing.JButton navBack;
75cdf0e10cSrcweir     private javax.swing.JButton navNext;
76cdf0e10cSrcweir     private javax.swing.JButton navCancel;
77cdf0e10cSrcweir     // End of variables declaration//GEN-END:variables
78cdf0e10cSrcweir 
79cdf0e10cSrcweir }
80