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.BusyBox
Puts up a dialog with a specified message. All user input is locked out. When the program is done with its task, it can unlock things by calling the done() method.
Sample usage:
BusyBox b = new BusyBox( this, "Sample BusyBox" ); b.show(); [your task here] b.done();
NOTE: do not use this inside an event handler call! With some browsers this will cause a deadlock. Instead, have your event handler start a new thread to run the busy box and task.
Fetch the software.
Fetch the entire Acme package.
public BusyBox(Frame parent, String message)
public BusyBox(Frame parent, String title, String message)
public void show()
public void run()done
public void done()
All Packages Class Hierarchy This Package Previous Next Index
ACME Java ACME Labs