Here you can find the source of showWarningMessage(String message, Component component)
public static void showWarningMessage(String message, Component component)
//package com.java2s; //License from project: Apache License import java.awt.Component; import javax.swing.JOptionPane; public class Main { public static void showWarningMessage(String message, Component component) { JOptionPane.showMessageDialog(component, message, "Peringatan", JOptionPane.WARNING_MESSAGE); }//from w w w . j a v a2 s . c om }