Java JOptionPane Info showInformationMessage(Component parent, String str)

Here you can find the source of showInformationMessage(Component parent, String str)

Description

Display information.

License

Apache License

Declaration

public final static void showInformationMessage(Component parent, String str) 

Method Source Code


//package com.java2s;
/*//from   w w  w . j a  v  a 2 s  .c  o m
 * Copyright 2004 The Apache Software Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.awt.Component;

import javax.swing.JOptionPane;

public class Main {
    /**
     * Display information.
     */
    public final static void showInformationMessage(Component parent, String str) {
        JOptionPane.showMessageDialog(parent, str, "Information!", JOptionPane.INFORMATION_MESSAGE);
    }
}

Related

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