Interface awt.Dialog
All Packages    This Package    Previous    Next

Interface awt.Dialog

public interface Dialog
extends Object
Dialog is an interface that factors out the common elements of all dialog boxes. It's mainly here for users of the DialogHandler callback methods.
See Also:
MessageDialog, DialogHandler
Version:
1.4 31 Jan 1995
Author:
Herb Jellinek

dispose()
Dispose of this dialog.
hide()
Hide this dialog.
show()
Show this dialog.

dispose
  public abstract void dispose()
Dispose of this dialog.

show

  public abstract int show()
Show this dialog. If modal, returns the number of the button pressed. If not, returns -1.

hide

  public abstract void hide()
Hide this dialog.


All Packages    This Package    Previous    Next