|
|
|
|
@ -156,13 +156,11 @@ boolean setCurrentPanel(Object id) {
|
|
|
|
|
|
|
|
|
|
WizardPage nextPanel =
|
|
|
|
|
(WizardPage)panelHashmap.get(id);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If we couldn't find the panel that should be displayed, return
|
|
|
|
|
// false.
|
|
|
|
|
|
|
|
|
|
if (nextPanel == null)
|
|
|
|
|
throw new WizardPanelNotFoundException();
|
|
|
|
|
throw new WizardPanelNotFoundException();
|
|
|
|
|
|
|
|
|
|
WizardPage oldPanel = currentPanel;
|
|
|
|
|
currentPanel = nextPanel;
|
|
|
|
|
@ -170,8 +168,9 @@ boolean setCurrentPanel(Object id) {
|
|
|
|
|
if (oldPanel != currentPanel) {
|
|
|
|
|
firePropertyChange(CURRENT_PAGE_PROPERTY,
|
|
|
|
|
oldPanel, currentPanel);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|