Here you can find the source of showInformationMessage(Component component, String message, String title)
public static void showInformationMessage(Component component, String message, String title)
//package com.java2s; //License from project: Open Source License import java.awt.Component; import javax.swing.JOptionPane; public class Main { public static void showInformationMessage(Component component, String message, String title) { JOptionPane.showMessageDialog(component, message, title, JOptionPane.INFORMATION_MESSAGE); }/*from w w w . j av a 2s. c o m*/ }