站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 5.0.0

DialogDisplayer (NetBeans Dialogs API) - NetBeans API Javadoc 5.0.0

 

org.openide
Class DialogDisplayer

java.lang.Object
  extended byorg.openide.DialogDisplayer

public abstract class DialogDisplayer
extends Object

Permits dialogs to be displayed.

Since:
3.14

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

DialogDisplayer

protected DialogDisplayer()
Subclass constructor.

Method Detail

getDefault

public static DialogDisplayer getDefault()
Get the default dialog displayer.

Returns:
the default instance from lookup

notify

public abstract Object notify(NotifyDescriptor descriptor)
Notify the user of something in a message box, possibly with feedback.

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).

Parameters:
descriptor - description of the notification
Returns:
the option that caused the message box to be closed

createDialog

public abstract Dialog createDialog(DialogDescriptor descriptor)
Get a new standard dialog. The dialog is designed and created as specified in the parameter. Anyone who wants a dialog with standard buttons and standard behavior should use this method.

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.

Parameters:
descriptor - general description of the dialog
Returns:
the new dialog

 

Built on May 3 2007.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.