Hook to enable button panel customization.
Brought to you by:
w_ready99
In order to easily customize the SimpleJWizardDialog's
button panel the init method shall be slightly modified.
In addition a factory method shall be added:
int private void init() { ....
//...
this.buttonPanel = makeButtonPanel();
//...
}
/**
* Provides a hook to customize the button panel.
*/
protected JPanel makeButtonPanel() {
return new SimpleButtonPanel(wizardComponents);
}
Modified SimpleJWizardDialog with other hooks already reported to JWizardComponent's author.
Logged In: NO
This has been added and will be included in a future release
that will be coming out shortly