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.YesNoBox
Puts up a dialog with a specified message and two buttons, Yes and No. All user input is locked out. The program can retrieve the user's answer via the getAnswer() method.
Sample usage:
YesNoBox yn = new YesNoBox( this, "Sample YesNoBox" ); yn.show(); switch ( yn.getAnswer() ) { case YesNoBox.YES: [your code here] break; case YesNoBox.NO: [your code here] break; }
Fetch the software.
Fetch the entire Acme package.
public static final int YESNO
public static final int NO
public YesNoBox(Frame parent, String message)
public YesNoBox(Frame parent, String title, String message)
All Packages Class Hierarchy This Package Previous Next Index
ACME Java ACME Labs