Here you can find the source of showWarning(final Component rootComponent, final String message, final String title)
public static void showWarning(final Component rootComponent, final String message, final String title)
//package com.java2s; //License from project: BSD License import java.awt.Component; import javax.swing.JOptionPane; public class Main { public static void showWarning(final Component rootComponent, final String message, final String title) { JOptionPane.showMessageDialog(rootComponent, message, title, JOptionPane.WARNING_MESSAGE); }/*from w w w. j ava2 s . c om*/ }