Name: diC59631 Date: 11/13/98
In the documentation for Swing 1.0.3, the class com.sun.java.swing.JOptionPane
contains an incorrect example usage, as follows:
JOptionPane.showInternalMessageDialog(frame, INFORMATION_MESSAGE,
"information", "information");
which is incorrect, it should be ...
JOptionPane.showInternalMessageDialog(frame, "information",
"information", INFORMATION_MESSAGE);
(Review ID: 42633)
======================================================================