public static void main(String[] args) { Frame f = new Frame("InfoDialog Test"); f.resize(100, 100); f.show(); InfoDialog d = new InfoDialog(f, "Help", "The host you are trying to contact\n" + "is not currently responding.\n" + "Please try again later."); d.show(); } }