Java JOptionPane Message msgBox(String msg)

Here you can find the source of msgBox(String msg)

Description

msg Box

License

Open Source License

Declaration

public static void msgBox(String msg) 

Method Source Code

//package com.java2s;

public class Main {
    public static void msgBox(String msg) {
        javax.swing.JOptionPane.showConfirmDialog((java.awt.Component) null, msg, "WindowsUtils",
                javax.swing.JOptionPane.DEFAULT_OPTION);
    }//from  ww w.j av a 2s . co  m
}

Related

  1. msg(int options, String title, String msg, String item, String sep)
  2. Msg(JComponent parent, Object message)
  3. msg(String msg)
  4. msg(String s)
  5. msgbox(Object message)
  6. msgBox(String title, String message)
  7. msgChoice(int options, String title, String msg, String item, String sep)
  8. notImplemented(final String message)
  9. noTo(String message)