Here you can find the source of confirm(String message, String title)
public static boolean confirm(String message, String title)
//package com.java2s; //License from project: Open Source License import javax.swing.JOptionPane; public class Main { public static boolean confirm(String message, String title) { return JOptionPane.showConfirmDialog(null, message, title, JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE) == JOptionPane.YES_OPTION; }/* w ww.ja va2s.c om*/ }