Here you can find the source of displayConfirmPane(String desc, String title)
public static boolean displayConfirmPane(String desc, String title)
//package com.java2s; //License from project: Open Source License import javax.swing.JOptionPane; public class Main { public static boolean displayConfirmPane(String desc, String title) { if (title == null) title = "Confirmation required"; int res = JOptionPane.showConfirmDialog(null, desc, title, JOptionPane.YES_NO_OPTION); if (res == JOptionPane.YES_OPTION) return true; else//from w w w.j a v a 2 s.c o m return false; } }