Java JOptionPane Message showMessage(final String message)

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

Description

show Message

License

Open Source License

Declaration

public static void showMessage(final String message) 

Method Source Code

//package com.java2s;
/*/*from  ww  w . ja  va  2  s . co m*/
 * Copyright (C) 2010, 2011, 2012 by Arne Kesting, Martin Treiber, Ralph Germ, Martin Budden
 *                                   <movsim.org@gmail.com>
 * -----------------------------------------------------------------------------------------
 * 
 * This file is part of
 * 
 * MovSim - the multi-model open-source vehicular-traffic simulator.
 * 
 * MovSim 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.
 * 
 * MovSim 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 MovSim. If not, see <http://www.gnu.org/licenses/>
 * or <http://www.movsim.org>.
 * 
 * -----------------------------------------------------------------------------------------
 */

import java.awt.EventQueue;

import javax.swing.JOptionPane;

public class Main {
    public static void showMessage(final String message) {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                JOptionPane.showMessageDialog(null, message);
            }
        });
    }
}

Related

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