Package org.jab.docsearch.gui

Examples of org.jab.docsearch.gui.MessageConfirmRunner


     *
     * @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);
View Full Code Here

TOP

Related Classes of org.jab.docsearch.gui.MessageConfirmRunner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.