Here you can find the source of showConfirmation(String msg)
public static boolean showConfirmation(String msg)
//package com.java2s; /**/*w w w .j a v a 2 s. co m*/ * SlingBeans - NetBeans Sling plugin https://github.com/jkan997/SlingBeans * Licensed under Apache 2.0 license http://www.apache.org/licenses/LICENSE-2.0 */ import javax.swing.JOptionPane; public class Main { public static boolean showConfirmation(String msg) { int res = JOptionPane.showConfirmDialog(null, msg, "Confirmation", JOptionPane.YES_NO_OPTION); return (res == 0); } }