Java JOptionPane Message notImplemented(final String message)

Here you can find the source of notImplemented(final String message)

Description

Popup a warning dialog displaying message.

License

Open Source License

Declaration

public static void notImplemented(final String message) 

Method Source Code

//package com.java2s;

import javax.swing.JOptionPane;

public class Main {
    /**//from   www  . j  a  v a 2  s .c  o  m
     * Popup a warning dialog displaying <tt>message</tt>.
     **/
    public static void notImplemented(final String message) {
        JOptionPane.showMessageDialog(null, message, "Not Implemented", JOptionPane.WARNING_MESSAGE);
    }
}

Related

  1. msg(String s)
  2. msgbox(Object message)
  3. msgBox(String msg)
  4. msgBox(String title, String message)
  5. msgChoice(int options, String title, String msg, String item, String sep)
  6. noTo(String message)
  7. optionWindow(String message, String title, String[] options)
  8. pause(final String msg)
  9. plain(String title, Object message, JComponent parent)