Java JOptionPane Confirmation getUserConfirmation(Component cp, String message)

Here you can find the source of getUserConfirmation(Component cp, String message)

Description

Asks the user confirmation

License

Open Source License

Parameter

Parameter Description
cp Component
message Message

Return

The user confirmation value

Declaration

public static boolean getUserConfirmation(Component cp, String message) 

Method Source Code

//package com.java2s;
/** (C) Copyright 1998-2009 Hewlett-Packard Development Company, LP
    /*from  w  w  w  .j av a  2 s  .c  o  m*/
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
    
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
    
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    
 For more information: www.smartfrog.org
    
 */

import javax.swing.JOptionPane;

import java.awt.Component;

public class Main {
    /**
     * Asks the user confirmation
     *
     * @param cp      Component
     * @param message Message
     * @return The user confirmation value
     */
    public static boolean getUserConfirmation(Component cp, String message) {
        int option = JOptionPane.showConfirmDialog(cp, message, " Please Confirm...", JOptionPane.YES_NO_OPTION);

        return option == JOptionPane.OK_OPTION;
    }
}

Related

  1. confirmWindow(String title, String message)
  2. displayConfirm(Component parent, String message, String title, int optionType, int messageType)
  3. displayConfirmPane(String desc, String title)
  4. getConfirmation(Component parent, String str)
  5. getConfirmation(Component parent, String str)
  6. getUserConfirmation(String arg1)
  7. listConfirm(Component comp, String title, String message, Object[] listModel)
  8. pedeConfirmacao(String msg, int opcoes, int tipoMsg)
  9. quitConfirmed(Component parent, String message)