*
* @return true for yes and false for no
*/
@SuppressWarnings("unused")
private boolean getConfirmationMessage(String title, String details) {
MessageConfirmRunner mct = new MessageConfirmRunner(title, details, this);
try {
SwingUtilities.invokeAndWait(mct);
if (mct.getReturnInt() == JOptionPane.YES_OPTION) {
return true;
}
}
catch (InterruptedException ie) {
logger.fatal("getConfirmationMessage() failed with InterruptedException", ie);