|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.openide.DialogDisplayer
Permits dialogs to be displayed.
Constructor Summary | |
protected |
DialogDisplayer()
Subclass constructor. |
Method Summary | |
abstract Dialog |
createDialog(DialogDescriptor descriptor)
Get a new standard dialog. |
static DialogDisplayer |
getDefault()
Get the default dialog displayer. |
abstract Object |
notify(NotifyDescriptor descriptor)
Notify the user of something in a message box, possibly with feedback. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
protected DialogDisplayer()
Method Detail |
public static DialogDisplayer getDefault()
public abstract Object notify(NotifyDescriptor descriptor)
To support both GUI and non-GUI use, this method may be called from any thread (providing you are not holding any locks), and will block the caller's thread. In GUI mode, it will be run in the AWT event thread automatically. If you wish to hold locks, or do not need the result object immediately or at all, please make this call asynchronously (e.g. from the request processor).
descriptor
- description of the notification
public abstract Dialog createDialog(DialogDescriptor descriptor)
Do not cache the resulting dialog if it is modal and try to reuse it! Always create a new dialog using this method if you need to show a dialog again. Otherwise previously closed windows can reappear.
descriptor
- general description of the dialog
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |