Java JOptionPane Confirmation confirmDialogWorker(Component owner, String title, String message, ModalityType modalityType, int option)

Here you can find the source of confirmDialogWorker(Component owner, String title, String message, ModalityType modalityType, int option)

Description

confirm Dialog Worker

License

Open Source License

Declaration

private static int confirmDialogWorker(Component owner, String title, String message, ModalityType modalityType,
            int option) 

Method Source Code

//package com.java2s;
/*//from  ww  w  .j a  v  a2s.com
 * Copyright (c) 2004-2016 Universidade do Porto - Faculdade de Engenharia
 * Laborat?rio de Sistemas e Tecnologia Subaqu?tica (LSTS)
 * All rights reserved.
 * Rua Dr. Roberto Frias s/n, sala I203, 4200-465 Porto, Portugal
 *
 * This file is part of Neptus, Command and Control Framework.
 *
 * Commercial Licence Usage
 * Licencees holding valid commercial Neptus licences may use this file
 * in accordance with the commercial licence agreement provided with the
 * Software or, alternatively, in accordance with the terms contained in a
 * written agreement between you and Universidade do Porto. For licensing
 * terms, conditions, and further information contact lsts@fe.up.pt.
 *
 * European Union Public Licence - EUPL v.1.1 Usage
 * Alternatively, this file may be used under the terms of the EUPL,
 * Version 1.1 only (the "Licence"), appearing in the file LICENCE.md
 * included in the packaging of this file. You may not use this work
 * except in compliance with the Licence. Unless required by applicable
 * law or agreed to in writing, software distributed under the Licence is
 * distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the Licence for the specific
 * language governing permissions and limitations at
 * http://ec.europa.eu/idabc/eupl.html.
 *
 * For more information please see <http://lsts.fe.up.pt/neptus>.
 *
 * Author: 
 * 24/Fev/2005
 */

import java.awt.Component;
import java.awt.Dialog.ModalityType;

import javax.swing.JDialog;

import javax.swing.JOptionPane;

public class Main {
    private static int confirmDialogWorker(Component owner, String title, String message, ModalityType modalityType,
            int option) {
        // int response = JOptionPane.showConfirmDialog(owner, message, title, JOptionPane.YES_NO_OPTION);
        // return response; // == JOptionPane.YES_OPTION;

        JOptionPane jop = new JOptionPane(message, JOptionPane.QUESTION_MESSAGE, option);
        JDialog dialog = jop.createDialog(owner, title);
        dialog.setModalityType(modalityType);
        dialog.setVisible(true);
        Object selectedValue = jop.getValue();
        if (selectedValue == null)
            return JOptionPane.CLOSED_OPTION;
        if (selectedValue instanceof Integer)
            return ((Integer) selectedValue).intValue();
        return JOptionPane.CLOSED_OPTION;
    }
}

Related

  1. confirmationBox(String msg, String title)
  2. confirmationPrompt(String msg, String title, Component parent)
  3. confirmChangeReference(boolean isChangingProject)
  4. confirmDialog(Component owner, String title, String message)
  5. confirmDialog(String msg, String title)
  6. ConfirmMessage(String strMsg)
  7. confirmUserChoiceWithCustomOptions(final Component sourceComponent, final String question, final String defaultOption, final String... options)
  8. confirmWindow(String title, String message)
  9. displayConfirm(Component parent, String message, String title, int optionType, int messageType)