Here you can find the source of yesNo(Component parent, String message, String title)
public static boolean yesNo(Component parent, String message, String title)
//package com.java2s; //License from project: Open Source License import javax.swing.*; import java.awt.*; public class Main { public static boolean yesNo(Component parent, String message, String title) { return 0 == JOptionPane.showConfirmDialog(parent, message, title, JOptionPane.YES_NO_OPTION); }//from w ww . j a va 2 s .c o m }