| org.netbeans.modules.etl.ui.view.wizards.ETLWizardDescriptor
ETLWizardDescriptor | abstract public class ETLWizardDescriptor extends WizardDescriptor (Code) | | Abstract subclass of NetBeans wizard descriptor. ETL wizard descriptors should be
concrete subclasses of this class.
|
Constructor Summary | |
public | ETLWizardDescriptor(WizardDescriptor.Iterator iter, Object context) Constructs an instance of ETLWizardDescriptor with the given iterator and context. |
Method Summary | |
protected void | initialize() Overrides parent implementation to set customized look and feel settings. | protected void | initializeLookAndFeel() Initializes look-and-feel of wizard panels. | protected void | updateState() Called whenever user chooses a navigation button (back, next, etc.) on the wizard. |
ETLWizardDescriptor | public ETLWizardDescriptor(WizardDescriptor.Iterator iter, Object context)(Code) | | Constructs an instance of ETLWizardDescriptor with the given iterator and context.
Parameters: iter - WizardDescriptor.Iterator instance to cycle through the panels definedby this descriptor Parameters: context - ETLWizardContext to serve as intermediate storage for data collectedby panels in this descriptor. |
initialize | protected void initialize()(Code) | | Overrides parent implementation to set customized look and feel settings.
See Also: org.openide.WizardDescriptor.initialize |
initializeLookAndFeel | protected void initializeLookAndFeel()(Code) | | Initializes look-and-feel of wizard panels.
|
updateState | protected void updateState()(Code) | | Called whenever user chooses a navigation button (back, next, etc.) on the wizard.
See Also: org.openide.WizardDescriptor.updateState |
|
|