Here you can find the source of infoMsg(String msg)
Parameter | Description |
---|---|
msg | a parameter |
public static void infoMsg(String msg)
//package com.java2s; //License from project: Open Source License import javax.swing.JOptionPane; public class Main { /**/* w w w . ja va 2 s . c o m*/ * Information message dialog * * @param msg */ public static void infoMsg(String msg) { // Show it in a message box JOptionPane.showMessageDialog(null, msg, "Information", JOptionPane.INFORMATION_MESSAGE); System.out.println(msg); } }