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