Java JOptionPane Message showLog(int type, String title, String message)

Here you can find the source of showLog(int type, String title, String message)

Description

show Log

License

Open Source License

Declaration

public static void showLog(int type, String title, String message) 

Method Source Code


//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*/
}

Related

  1. showExceptionMessage(Exception e)
  2. showInput(Component parent, String message, String initValue)
  3. showInput(String message)
  4. showInputInteger(String message)
  5. showInvalidJarPathMessage(String jarPath)
  6. showMessage(Component c, String message, String title)
  7. showMessage(Component c, String msg)
  8. showMessage(Component component, String message)
  9. showMessage(Component item, String title)