Java JOptionPane Message showMessage(final String message)

Here you can find the source of showMessage(final String message)

Description

shows a message prompt

License

Open Source License

Parameter

Parameter Description
message the message

Declaration

public static void showMessage(final String message) 

Method Source Code


//package com.java2s;
/*/*from   w ww  .  ja  v a 2s  . c om*/
 * Copyright (c) 2015.
 *
 *     This file is part of VaSOLSim.
 *
 *     VaSOLSim is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     VaSOLSim 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 General Public License for more details.
 *
 *     You should have received a copy of the GNU General Public License
 *     along with VaSOLSim.  If not, see <http://www.gnu.org/licenses/>.
 */

import javax.swing.JOptionPane;

public class Main {
    /**
     * shows a message prompt
     * @param message the message
     */
    public static void showMessage(final String message) {
        showMessage(message, "FrontPage Popup");
    }

    /**
     * shows a message prompt
     * @param message the message
     * @param title the title of the prompt
     */
    @SuppressWarnings("SameParameterValue")
    public static void showMessage(final String message, final String title) {
        JOptionPane.showMessageDialog(null, message, title, JOptionPane.WARNING_MESSAGE);
    }
}

Related

  1. showMessage(Component parent, String message, int messageType)
  2. showMessage(Component parent, String msg, String title, int flags)
  3. showMessage(Component parentComponent, String title, String message, int messageType)
  4. showMessage(final Component rootComponent, final String message, final String title)
  5. showMessage(final String message)
  6. showMessage(final String msg, Component parent)
  7. showMessage(final Window aParent, final String aMessage)
  8. showMessage(final Window parent, final String message, final String title, final int messageType)
  9. showMessage(Object message)