Here you can find the source of confirm(Component component, String title, String msg)
public static final boolean confirm(Component component, String title, String msg)
//package com.java2s; import java.awt.Component; import javax.swing.JOptionPane; public class Main { public static final boolean confirm(Component component, String title, String msg) { int rtn = JOptionPane.showConfirmDialog(component, msg, title, JOptionPane.OK_CANCEL_OPTION); return (rtn == JOptionPane.OK_OPTION); }/*from ww w .j a v a 2s . com*/ }