Here you can find the source of confirm(JFrame parent, String query, int type)
public static boolean confirm(JFrame parent, String query, int type)
//package com.java2s; //License from project: Open Source License import javax.swing.JFrame; import javax.swing.JOptionPane; public class Main { public static boolean confirm(JFrame parent, String query, int type) { return JOptionPane.showConfirmDialog(parent, query, "UploadR", JOptionPane.YES_NO_OPTION, type) == 0; }/*from w w w . j ava 2 s. co m*/ }