See: Description
| Package | Description |
|---|---|
| org.openide |
Miscellaneous general classes, especially the util classes to handle a user notifications,
displaying dialogs and wizards.
|
Added ComposedInput providing a composed input of multiple chained selection lists and/or input lines.
Added QuickPick providing a selection list allowing multiple selections.
DialogDisplayer.notifyFuture now allows to chain processing after user closes the dialog without blocking a thread as with DialogDisplayer.notify.
Added PasswordLine, which is implementation of InputLine
intended for password entry.
When a document window is floated (decoupled from the main IDE window)
and has focus then a new dialog window will use it as a parent window by default.
That means such non-modal dialogs will close when that document window is closed.
To avoid such situation pass WindowManager.getDefault().getMainWindow() as
dialog parent window when creating the dialog instance.
A: You can change the format of your wizard's title by WizardDescriptor.setTitleFormat(MessageFormat format) and rid of 'wizard' word in the default wizard's title.
|
Read more about the implementation in the answers to architecture questions.