Here you can find the source of showWarning(String message)
public static void showWarning(String message)
//package com.java2s; //License from project: Open Source License import javax.swing.JDialog; import javax.swing.JOptionPane; public class Main { public static void showWarning(String message) { //custom title, warning icon JOptionPane.showMessageDialog(new JDialog(), message, "Warning", JOptionPane.WARNING_MESSAGE); }//from ww w. j a v a 2 s . com }