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