static bool confirmYesNo(S msg) { ret confirmYesNo(null, msg); } static bool confirmYesNo(final Component owner, fS msg) { ret (bool) swing(func { JOptionPane.showConfirmDialog(owner, msg, "JavaX", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION }); }