All Packages Class Hierarchy This Package Previous Next Index
|  | 
java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Window
                           |
                           +----java.awt.Dialog
                                   |
                                   +----Acme.Widgets.ButtonDialog
                                           |
                                           +----Acme.Widgets.YesNoCancelBox
Puts up a dialog with a specified message and three buttons, Yes No and Cancel. All user input is locked out. The program can retrieve the user's answer via the getAnswer() method.
 Sample usage:
  
 
YesNoCancelBox ync = new YesNoCancelBox( this, "Sample YesNoCancelBox" ); ync.show(); switch ( ync.getAnswer() ) { case YesNoCancelBox.YES: [your code here] break; case YesNoCancelBox.NO: [your code here] break; case YesNoCancelBox.CANCEL: [your code here] break; }
 Fetch the software.
 Fetch the entire Acme package.
 
 CANCEL
	CANCEL
   NO
	NO
   YES
	YES
   
 YesNoCancelBox(Frame, String)
	YesNoCancelBox(Frame, String)
   YesNoCancelBox(Frame, String, String)
	YesNoCancelBox(Frame, String, String)
   
 YES
YES
public static final int YES
 NO
NO
public static final int NO
 CANCEL
CANCEL
public static final int CANCEL
 
 YesNoCancelBox
YesNoCancelBox
 public YesNoCancelBox(Frame parent,
                       String message)
 YesNoCancelBox
YesNoCancelBox
 public YesNoCancelBox(Frame parent,
                       String title,
                       String message)
All Packages Class Hierarchy This Package Previous Next Index
ACME Java ACME Labs