Java JFrame POPUP(JFrame frame, String message)

Here you can find the source of POPUP(JFrame frame, String message)

Description

POPUP

License

Open Source License

Declaration

public static void POPUP(JFrame frame, String message) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class Main {
    public static void POPUP(JFrame frame, String message) {
        JOptionPane.showMessageDialog(frame, message);
    }/*w w w.  ja v  a  2  s.  c  o m*/
}

Related

  1. newJFrame(Component c, String title, int w, int h)
  2. newModalDialog(JFrame owner, String title, JPanel content, JButton... buttons)
  3. optionDialog(String title, String text, String option1, String option2, int defaultOption, JFrame parentFrame)
  4. packFrame(JFrame frame)
  5. packJFrameWindow(final JComponent comp)
  6. popupError(JFrame parent, String title, String text)
  7. position(JFrame f)
  8. putOnWidestScreen(JFrame frame)
  9. refreshShape(final JFrame frame)