game.libraries.gui
Class CustomDialog

java.lang.Object
  |
  +--game.libraries.gui.CustomDialog

public class CustomDialog
extends java.lang.Object

Class to hold various static dialogs


Constructor Summary
CustomDialog()
           
 
Method Summary
static void message(java.lang.String message)
          Static method to show a general message.
static void notYetImplemented(java.lang.String topic)
          Static method to show a dialog informing that the named topic is not yet implemented.
static void reportException(java.lang.String header, java.lang.String circumstances, java.lang.Exception e)
          Static method to report, crudely, an exception.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CustomDialog

public CustomDialog()
Method Detail

message

public static void message(java.lang.String message)
Static method to show a general message.

Parameters:
message - message to display.

notYetImplemented

public static void notYetImplemented(java.lang.String topic)
Static method to show a dialog informing that the named topic is not yet implemented.

Parameters:
topic - description of the missing topic.

reportException

public static void reportException(java.lang.String header,
                                   java.lang.String circumstances,
                                   java.lang.Exception e)
Static method to report, crudely, an exception.

Parameters:
header - title for the dialog box.
circumstances - description of exception.
e - the exception.