Package com.golden.gamedev.funbox

Examples of com.golden.gamedev.funbox.ErrorNotificationDialog


   *
   * @see #distribute
   * @see com.golden.gamedev.funbox.ErrorNotificationDialog
   */
  protected void notifyError(Throwable error) {
    new ErrorNotificationDialog(error, this.bsGraphics, this.getClass()
            .getName(), null);
  }
View Full Code Here


     
      // draw the error messages in standard paint() method
      this.setIgnoreRepaint(false);
     
      // show the exception dialog to the user
      new ErrorNotificationDialog(e, this, this.getClass().getName(),
              null);
    }
  }
View Full Code Here

TOP

Related Classes of com.golden.gamedev.funbox.ErrorNotificationDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.