Java JOptionPane Info showInformationMessage(Component component, String message, String title)

Here you can find the source of showInformationMessage(Component component, String message, String title)

Description

show Information Message

License

Open Source License

Declaration

public static void showInformationMessage(Component component, String message, String title) 

Method Source Code


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

import java.awt.Component;

import javax.swing.JOptionPane;

public class Main {
    public static void showInformationMessage(Component component, String message, String title) {
        JOptionPane.showMessageDialog(component, message, title, JOptionPane.INFORMATION_MESSAGE);
    }/*from w  w w .  j  av a 2s.  c o  m*/
}

Related

  1. showInfoBox(Component aParent, String aTitle, String aMessage)
  2. showInfoMessage(Component parent, String message)
  3. showInfoMessage(String message, Component component)
  4. showInformationBox(Component pParent, String pMessage, String pTitle)
  5. showInformationConfirmBox(Component pParent, String pMessage, String pTitle, String pLeftOption, String pRightOption)
  6. showInformationMessage(Component parent, String str)
  7. showInformationMessage(Component parent, String str)
  8. showInformationMessage(final JComponent parent, final String messge, final String title)
  9. showStackTrace(Component parent, Exception e, String info)