JS-style alert box in java

alert, java, popup, swing

Solution

An basic way to accomplish such a popup is to use `JOptionPane.showMessageDialog`, see here.

JOptionPane.showMessageDialog(frame, "here comes the text.");   
// assumes frame to be a reference to the desired parent frame

Problem

What's the Java Swing counterpart for the JavaScript `alert()` popup (if there is one)?

Original source

Related problems