Lines Matching refs:nav
68 nav = new NavPanel(wizard, true, true, true, InstallWizard.IDEVERSIONS, ""); 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()
82 if (e.getSource() == nav.navNext) in actionPerformed()
88 nav.enableNext(false); in actionPerformed()
89 nav.enableBack(false); in actionPerformed()
90 nav.enableCancel(false); in actionPerformed()
112 if (e.getSource() == nav.navCancel) { in actionPerformed()
130 nav.removeCancelListener(this); in installationComplete()
131 nav.setCancelListener(nav); in installationComplete()
132 nav.navCancel.setText("Finish"); in installationComplete()
133 nav.enableCancel(true); in installationComplete()
141 private NavPanel nav; field in IdeFinal