Decision Applications
CONTACTS
|
ShowStatusThe ShowStatus class is an AWT frame that can be used to pop messages to the user. It was written before we started using the Swing library for all of our GUIs. To use the class, instantiate it, then add messages. When you are ready to show the messages to the user call either setVisible() or beepAndShow().
ShowStatus status = new ShowStatus(); When the ShowStatus frame loses the focus, or when the user clicks on the close button, the ShowStatus frame will be disposed of. |