| javax.swing.JPanel org.netbeans.modules.etl.ui.view.wizards.ETLCollaborationWizardJoinPanel
All known Subclasses: org.netbeans.modules.etl.ui.view.wizards.ETLCollaborationWizardJoinFinishPanel,
ETLCollaborationWizardJoinPanel | public class ETLCollaborationWizardJoinPanel extends JPanel implements WizardDescriptor.Panel(Code) | | author: radval |
getHelp | public HelpCtx getHelp()(Code) | | Help for this panel. When the panel is active, this is used as the help for the
wizard dialog.
the help or null if no help is supplied |
isValid | public boolean isValid()(Code) | | Test whether the panel is finished and it is safe to proceed to the next one. If
the panel is valid, the "Next" (or "Finish") button will be enabled.
Tip: if your panel is actually the component itself (so
ETLCollaborationWizardJoinPanel.getComponent returns this ), be sure to specifically
override this method, as the unrelated implementation in
java.awt.Component.isValid if not overridden could cause your wizard to
behave erratically.
true if the user has entered satisfactory information |
readSettings | public void readSettings(Object settings)(Code) | | Provides the wizard panel with the current data--either the default data or
already-modified settings, if the user used the previous and/or next buttons. This
method can be called multiple times on one instance of
WizardDescriptor.Panel .
The settings object is originally supplied to
WizardDescriptor.WizardDescriptor(WizardDescriptor.IteratorObject) . In
the case of a TemplateWizard.Iterator panel, the object is in fact
the TemplateWizard .
Parameters: settings - the object representing wizard panel state exception: IllegalStateException - if the the data provided by the wizard are notvalid. |
removeChangeListener | public void removeChangeListener(ChangeListener l)(Code) | | Remove a listener to changes of the panel's validity.
Parameters: l - the listener to remove |
storeSettings | public void storeSettings(Object settings)(Code) | | Provides the wizard panel with the opportunity to update the settings with its
current customized state. Rather than updating its settings with every change in
the GUI, it should collect them, and then only save them when requested to by this
method. Also, the original settings passed to
ETLCollaborationWizardJoinPanel.readSettings should not be
modified (mutated); rather, the object passed in here should be mutated according
to the collected changes, in case it is a copy. This method can be called multiple
times on one instance of WizardDescriptor.Panel .
The settings object is originally supplied to
WizardDescriptor.WizardDescriptor(WizardDescriptor.IteratorObject) . In
the case of a TemplateWizard.Iterator panel, the object is in fact
the TemplateWizard .
Parameters: settings - the object representing wizard panel state |
|
|