Generated by
JDiff

Class javax.swing.JOptionPane

Added Methods
String showInputDialog(Component, Object, Object) Shows a question-message dialog requesting input from the user and parented to parentComponent.
String showInputDialog(Object, Object) Shows a question-message dialog requesting input from the user with the input value initialized to initialSelectionValue.
 

Changed Methods
JDialog createDialog(Component, String) Change in exceptions thrown from no exceptions to HeadlessException.
Creates and returns a new JDialog wrapping this centered on the parentComponent in the parentComponent's frame.
Frame getFrameForComponent(Component) Change in exceptions thrown from no exceptions to HeadlessException.
Returns the specified component's Frame.
Frame getRootFrame() Change in exceptions thrown from no exceptions to HeadlessException.
Returns the Frame to use for the class methods in which a frame is not provided.
int showOptionDialog(Component, Object, String, int, int, Icon, Object[], Object) Change in exceptions thrown from no exceptions to HeadlessException.
Brings up a dialog with a specified icon where the initial choice is determined by the initialValue parameter and the number of choices is determined by the optionType parameter.
int showConfirmDialog(Component, Object) Change in exceptions thrown from no exceptions to HeadlessException.
Brings up a dialog with the options Yes No and Cancel; with the title Select an Option.
int showConfirmDialog(Component, Object, String, int) Change in exceptions thrown from no exceptions to HeadlessException.
Brings up a dialog where the number of choices is determined by the optionType parameter.
int showConfirmDialog(Component, Object, String, int, int) Change in exceptions thrown from no exceptions to HeadlessException.
Brings up a dialog where the number of choices is determined by the optionType parameter where the messageType parameter determines the icon to display.
int showConfirmDialog(Component, Object, String, int, int, Icon) Change in exceptions thrown from no exceptions to HeadlessException.
Brings up a dialog with a specified icon where the number of choices is determined by the optionType parameter.
Object showInputDialog(Component, Object, String, int, Icon, Object[], Object) Change in exceptions thrown from no exceptions to HeadlessException.
Prompts the user for input in a blocking dialog where the initial selection possible selections and all other options can be specified.
String showInputDialog(Component, Object) Change in exceptions thrown from no exceptions to HeadlessException.
Shows a question-message dialog requesting input from the user parented to parentComponent.
String showInputDialog(Component, Object, String, int) Change in exceptions thrown from no exceptions to HeadlessException.
Shows a dialog requesting input from the user parented to parentComponent with the dialog having the title title and message type messageType.
String showInputDialog(Object) Change in exceptions thrown from no exceptions to HeadlessException.
Shows a question-message dialog requesting input from the user.
void showMessageDialog(Component, Object) Change in exceptions thrown from no exceptions to HeadlessException.
Brings up an information-message dialog titled "Message".
void showMessageDialog(Component, Object, String, int) Change in exceptions thrown from no exceptions to HeadlessException.
Brings up a dialog that displays a message using a default icon determined by the messageType parameter.
void showMessageDialog(Component, Object, String, int, Icon) Change in exceptions thrown from no exceptions to HeadlessException.
Brings up a dialog displaying a message specifying all parameters.