|
|
| Deleted: |
< < |
- Visual component of wizard component.
*/
public JComponent getComponent();
/**
|
| Changed: |
< < |
- Get icon for tab
*/
public Icon getIcon();
/**
- Initializing of wizard component.
|
> > |
- Initializing of wizard component. This component
- invoked then {@link Wizard} construct all steps in {@link WizardExpert?}.
|
| Changed: |
< < |
public void init(Map<String, String> properties);
|
> > |
public void init(Wizard wizard, Map<String, String> properties);
|
| Changed: |
< < |
- invoke then user click on "Back" or "Next" button.
|
> > |
- invoke then user click on "Previous" or "Next" button.
|
| Changed: |
< < |
public void save();
|
> > |
public void save(Wizard wizard);
|
| Changed: |
< < |
- component. If settings not valid {@link ValidateException?} must
- be thrown with described text message.
-
- @throws ValidateException?
|
> > |
- component. If settings not valid then method must return false.
- If you like, you may show by {@link com.intellij.openapi.ui.Messages#showWarningDialog}
- method error message in this method.
*/
public boolean validate();
/**
- Return component for wizard component
|
| Changed: |
< < |
public void validate() throws ValidateException?;
|
> > |
public JComponent getComponent(); |