Java JOptionPane Info inform(String message)

Here you can find the source of inform(String message)

Description

inform

License

Open Source License

Declaration

public static void inform(String message) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import javax.swing.JOptionPane;

public class Main {
    public static void inform(String message) {
        inform(message, "Information");
    }/*from w  ww.j  av a  2s.  c  o m*/

    public static void inform(String message, String title) {
        JOptionPane.showMessageDialog(null, message, title, JOptionPane.INFORMATION_MESSAGE);
    }
}

Related

  1. infoBox(String message, String title)
  2. infoMessage(Component owner, String title, String message, ModalityType modalityType)
  3. infoMsg(final String msg)
  4. infoMsg(String msg)
  5. inform(String dlgTitle, String info, Component parent)
  6. information(String title, String message)
  7. mensajeInformacion(String mensaje, String titulo)
  8. showException(Component parent, Exception e, String info)
  9. showException(Component parent, Exception e, String info)