Here you can find the source of showLog(int type, String title, String message)
public static void showLog(int type, String title, String message)
//package com.java2s; //License from project: Open Source License import javax.swing.JOptionPane; public class Main { public static void showLog(int type, String title, String message) { JOptionPane.showMessageDialog(null, message, title, type); }/* w w w.j a v a 2 s .co m*/ }