Here you can find the source of messageBox(String s)
public static void messageBox(String s)
//package com.java2s; //License from project: Open Source License import java.awt.Component; import javax.swing.JOptionPane; public class Main { public static void messageBox(String s) { JOptionPane.showMessageDialog(null, s); }//w ww.j a v a 2 s.co m public static void messageBox(Component o, String s) { JOptionPane.showMessageDialog(o, s); } }