See: Description
Package | Description |
---|---|
org.openide |
Miscellaneous general classes, especially the util classes to handle a user notifications,
displaying dialogs and wizards.
|
This change makes four existing methods in
WizardDescriptor
public: doNextClick(), doPreviousClick(), doFinishClick() and doCancelClick().
In previous version the methods were declared final and package
private.
Using these methods it will be possible to move to wizard's next step
without clicking the Next button for example when user double-clicks
some selected item in wizard's panel .
Two new methods in NotifyDescriptor were added to allow API client to create NotificationLineSupport which allow handling error/warning/info messages in dialogs. If a dialog descriptor creates this support, DialogDisplayer allocates necessary space at the bottom of dialog where API clients can set info/warning/error messages with appropriate icons.
Two new constants for warning and info messages were introduced. Info message is annotated by blue info icon and warning message is annotated by orange warning icon with exclamation mark. Message foreground color is set to Label foreground standard color.
Freeform property strings are replaced by public constants.
WizardDescriptor.ArrayIterator
A constructor accepting List<Panel<Data>>
was added
to ArrayIterator
to avoid the need for generic array construction
by client code.
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.
Built on October 19 2013. | Portions Copyright 1997-2013 Sun Microsystems, Inc. All rights reserved.