All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class Acme.Widgets.NoticeBox

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Window
                           |
                           +----java.awt.Dialog
                                   |
                                   +----Acme.Widgets.OkDialog
                                           |
                                           +----Acme.Widgets.NoticeBox

public class NoticeBox
extends OkDialog
A notice-box.

Puts up a dialog with a notice icon, a specified message, and an Ok button. All user input is locked out until the button is clicked.

Sample usage:


 NoticeBox n = new NoticeBox( his, "Sample NoticeBox" );
 n.show();
 

Fetch the software.
Fetch the entire Acme package.


Constructor Index

 o NoticeBox(Frame, String)
Constructor, default title.
 o NoticeBox(Frame, String, String)
Constructor, specified title.

Constructors

 o NoticeBox
 public NoticeBox(Frame parent,
                  String message)
Constructor, default title.

 o NoticeBox
 public NoticeBox(Frame parent,
                  String title,
                  String message)
Constructor, specified title.


All Packages  Class Hierarchy  This Package  Previous  Next  Index

ACME Java  ACME Labs