Java tutorial
//package com.java2s; import javax.swing.JOptionPane; public class Main { /** * Displays a {@link JOptionPane} as an information message. * * @param title The title of the dialog. * @param message The message inside the dialog. */ public static void showInformationMessage(String title, String message) { JOptionPane.showMessageDialog(null, message, title, JOptionPane.INFORMATION_MESSAGE); } }