Here you can find the source of showInformationMessage(Component parent, String str)
public static void showInformationMessage(Component parent, String str)
//package com.java2s; //License from project: Open Source License import java.awt.*; import javax.swing.*; public class Main { /**/*from w w w . ja va 2 s .co m*/ * Show message. */ public static void showInformationMessage(Component parent, String str) { JOptionPane.showMessageDialog(parent, str, "Information!", JOptionPane.INFORMATION_MESSAGE); } }