Here you can find the source of info(Component component, String title, String msg)
public static final void info(Component component, String title, String msg)
//package com.java2s; import java.awt.Component; import javax.swing.JOptionPane; public class Main { public static final void info(Component component, String title, String msg) { JOptionPane.showMessageDialog(component, msg, title, JOptionPane.INFORMATION_MESSAGE); }/*from ww w.j a v a 2s .c o m*/ }