Here you can find the source of ShowOkCancelMessage(String msg)
public static boolean ShowOkCancelMessage(String msg)
//package com.java2s; //License from project: Open Source License import javax.swing.JOptionPane; public class Main { public static boolean ShowOkCancelMessage(String msg) { int result = JOptionPane.showConfirmDialog(null, msg, "Confirmation dialog", JOptionPane.OK_CANCEL_OPTION); if (result == JOptionPane.YES_OPTION) return true; else//from w w w . jav a2s.c om return false; } }