Here you can find the source of confirmationBox(String msg, String title)
public static boolean confirmationBox(String msg, String title)
//package com.java2s; //License from project: Open Source License import javax.swing.JOptionPane; public class Main { public static boolean confirmationBox(String msg, String title) { int result = JOptionPane.showConfirmDialog(null, msg, title, JOptionPane.YES_NO_OPTION); if (result == JOptionPane.YES_OPTION) { return true; } else {/*from ww w . ja v a 2s . com*/ return false; } } }