Java JOptionPane Info mensajeInformacion(String mensaje, String titulo)

Here you can find the source of mensajeInformacion(String mensaje, String titulo)

Description

mensaje Informacion

License

Open Source License

Declaration

public static void mensajeInformacion(String mensaje, String titulo) 

Method Source Code


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

import javax.swing.*;

public class Main {
    public static void mensajeInformacion(String mensaje, String titulo) {
        JOptionPane.showMessageDialog(null, mensaje, titulo, JOptionPane.INFORMATION_MESSAGE);
    }//w  w  w .  jav  a  2s .  co  m
}

Related

  1. infoMsg(final String msg)
  2. infoMsg(String msg)
  3. inform(String dlgTitle, String info, Component parent)
  4. inform(String message)
  5. information(String title, String message)
  6. showException(Component parent, Exception e, String info)
  7. showException(Component parent, Exception e, String info)
  8. showInfo(Component owner, String msg)
  9. showInfoBox(Component aParent, String aTitle, String aMessage)