- Common ways to obtain WizardPanel
private void myMethod () {WizardPanel w =
WizardDialog wizardDialog;wizardDialog.currentPanel.getNextPanel()
WizardDialog wizardDialog;(WizardPanel) wizardDialog.panels.get(location)
WizardDialog wizardDialog;WizardDialog wizardDialog2;wizardDialog.getWizardPanel(wizardDialog2.step + 1)
- Smart code suggestions by Codota
}
/** * Returns true if there is a 'next' panel, and false otherwise. * * @return boolean. */ public boolean canDoNextPanel() { return this.currentPanel.hasNextPanel(); }
/** * Returns true if there is a 'next' panel, and false otherwise. * * @return boolean. */ public boolean canDoNextPanel() { return this.currentPanel.hasNextPanel(); }
/** * Returns true if there is a 'next' panel, and false otherwise. * * @return boolean. */ public boolean canDoNextPanel() { return this.currentPanel.hasNextPanel(); }