Here you can find the source of showConfirmMessage(String message, Component component)
public static int showConfirmMessage(String message, Component component)
//package com.java2s; //License from project: Apache License import java.awt.Component; import javax.swing.JOptionPane; public class Main { public static int showConfirmMessage(String message, Component component) { int confirm = JOptionPane.showConfirmDialog(component, message, "Konfirmasi", JOptionPane.YES_NO_OPTION); return confirm; }//ww w . j a v a 2s . co m }