Here you can find the source of getConfirmation(Component parent, String str)
public static boolean getConfirmation(Component parent, String str)
//package com.java2s; //License from project: Open Source License import java.awt.*; import javax.swing.*; public class Main { /**// w w w . j ava2s . com * Get user confirmation. */ public static boolean getConfirmation(Component parent, String str) { int res = JOptionPane.showConfirmDialog(parent, str, "Confirmation", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE); return (res == JOptionPane.YES_OPTION); } }