Пример #1
0
 public static void createDialog() {
   dialog = new TestDialog(new Frame(), "Instructions");
   String[] defInstr = {"Instructions will appear here. ", ""};
   dialog.printInstructions(defInstr);
   dialog.show();
   println("Any messages for the tester will display here.");
 }
Пример #2
0
 public static void println(String messageIn) {
   dialog.displayMessage(messageIn);
 }
Пример #3
0
 public static void printInstructions(String[] instructions) {
   dialog.printInstructions(instructions);
 }
Пример #4
0
 public static void createDialogWithInstructions(String[] instructions) {
   dialog = new TestDialog(new Frame(), "Instructions");
   dialog.printInstructions(instructions);
   dialog.show();
   println("Any messages for the tester will display here.");
 }