Java JOptionPane Warning showWarningMessage(Component parent, String str)

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

Description

Display warning message.

License

Apache License

Declaration

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

Method Source Code


//package com.java2s;
/*/*  w w  w .  j a  v a 2s  .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 warning message.
     */
    public final static void showWarningMessage(Component parent, String str) {
        JOptionPane.showMessageDialog(parent, str, "Warning!", JOptionPane.WARNING_MESSAGE);
    }
}

Related

  1. showWarning(final String message)
  2. showWarning(String message)
  3. showWarning(String message)
  4. showWarningBox(Component pParent, String pMessage, String pTitle)
  5. showWarningConfirmBox(Component pParent, String pMessage, String pTitle, String pLeftOption, String pRightOption)
  6. showWarningMessage(Component parent, String str)
  7. showWarningMessage(final Window aParent, final String aMessage)
  8. showWarningMessage(String message, Component component)
  9. showWarningMessage(String title, String message, java.awt.Component parent)