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