Lines Matching refs:nav
68 nav = new NavPanel(wizard, true, true, true, InstallWizard.VERSIONS, ""); in initComponents()
69 nav.setNextListener(this); in initComponents()
70 nav.removeCancelListener(nav); in initComponents()
71 nav.setCancelListener(this); in initComponents()
72 nav.navNext.setText("Install"); in initComponents()
73 add(nav, java.awt.BorderLayout.SOUTH); in initComponents()
85 if (e.getSource() == nav.navNext) in actionPerformed()
91 nav.enableNext(false); in actionPerformed()
92 nav.enableBack(false); in actionPerformed()
93 nav.enableCancel(false); in actionPerformed()
114 if (e.getSource() == nav.navCancel) { in actionPerformed()
132 nav.removeCancelListener(this); in installationComplete()
133 nav.setCancelListener(nav); in installationComplete()
134 nav.navCancel.setText("Finish"); in installationComplete()
135 nav.enableIDE(true); in installationComplete()
136 nav.enableCancel(true); in installationComplete()
141 nav.removeCancelListener(this); in installationComplete()
142 nav.setCancelListener(nav); in installationComplete()
143 nav.navCancel.setText("Finish"); in installationComplete()
144 nav.enableCancel(true); in installationComplete()
153 private NavPanel nav; field in Final