Java JOptionPane Info info(Component component, String title, String msg)

Here you can find the source of info(Component component, String title, String msg)

Description

info

License

Open Source License

Declaration

public static final void info(Component component, String title, String msg) 

Method Source Code


//package com.java2s;
import java.awt.Component;

import javax.swing.JOptionPane;

public class Main {

    public static final void info(Component component, String title, String msg) {
        JOptionPane.showMessageDialog(component, msg, title, JOptionPane.INFORMATION_MESSAGE);
    }/*from  ww w.j a  v a  2s .c  o  m*/
}

Related

  1. displayInfoPane(Component parentComponent, String message)
  2. displayInformation(String strMsg)
  3. displayInformationMessage(Component parentComponent, String message, String windowTitle)
  4. flashInfoMessage(final Component sourceComponent, final String message, int durationInMilliSecs)
  5. getIconInformation()
  6. info(Component parent, String message)
  7. info(Component parent, String message)
  8. info(String message, Component parent)
  9. infoBox(String message, String title)