Here you can find the source of showWarningMessage(Component parent, String str)
public static void showWarningMessage(Component parent, String str)
//package com.java2s; //License from project: Open Source License import java.awt.*; import javax.swing.*; public class Main { /**// ww w .ja v a 2s .co m * Show warning message. */ public static void showWarningMessage(Component parent, String str) { JOptionPane.showMessageDialog(parent, str, "Warning!", JOptionPane.WARNING_MESSAGE); } }