Java JOptionPane Warning warningMessage(Component component, String title, String message)

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

Description

warning Message

License

Open Source License

Declaration

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

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 warningMessage(Component component, String title, String message) {
        JOptionPane.showMessageDialog(component, message, title, JOptionPane.WARNING_MESSAGE);
    }//from w w  w.  j a v  a2s  .  com
}

Related

  1. warn(String message)
  2. warning(String message, Component parent)
  3. warning(String Msg)
  4. warning(String msg)
  5. warning(String title, Object message, JComponent parent)
  6. warningMessage(final String title, final String content)
  7. warnMsg(final String msg)
  8. warnMsg(String msg)
  9. warnUser(Component parent, String message)