// purpose: display a quotation to a dialog window import javax.swing.*; public class QuoteDialog { // method main(): application entry point for quote display public static void main( String[] args ) { // specify the quotation String message = "Daylight is good at arriving at the right time.\n" + " All things must pass, George Harrison"; // display quotation as a message dialog JOptionPane.showMessageDialog( null, message ); } }