Here you can find the source of showMessage(final Component rootComponent, final String message, final String title)
public static void showMessage(final Component rootComponent, final String message, final String title)
//package com.java2s; //License from project: BSD License import java.awt.Component; import javax.swing.JOptionPane; public class Main { public static void showMessage(final Component rootComponent, final String message, final String title) { JOptionPane.showMessageDialog(rootComponent, message, title, JOptionPane.INFORMATION_MESSAGE); }/*w w w .ja v a 2 s . c om*/ }