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