| org.pietschy.wizard.HelpBroker
HelpBroker | public interface HelpBroker (Code) | | An interface for handling wizard help requests. If this interface is implemented by a
WizardModel , the
help button will be automatically displayed and help request fowwareded the model. Otherwise, you'll need to
call
Wizard.setHelpBroker(HelpBroker) explicitly with an instance of this interface.
author: andrewp version: $Revision: 1.3 $ |
activateHelp | public void activateHelp(JComponent parent, WizardModel model)(Code) | | Activated when the user presses help. Implementors will typically query the model to determine the current
step and display the appropriate information.
Parameters: parent - the component that is requesting the help. This is typically the Wizard itself. Parameters: model - the wizard model. |
|
|