public final class ThreadSafeJOptionPane extends Object
JOptionPane for usage outside the EDT. You can
use this class if you want to display an option pane in any other thread
without violating the "Single Thread Rule".| Modifier and Type | Method and Description |
|---|---|
static int |
showConfirmDialog(Component parentComponent,
Object message)
Brings up a dialog with the options Yes, No and
Cancel; with the title, Select an Option.
|
static int |
showConfirmDialog(Component parentComponent,
Object message,
String title,
int optionType)
Brings up a dialog where the number of choices is determined by the
optionType parameter. |
static int |
showConfirmDialog(Component parentComponent,
Object message,
String title,
int optionType,
int messageType)
Brings up a dialog where the number of choices is determined by the
optionType parameter, where the messageType
parameter determines the icon to display. |
static int |
showConfirmDialog(Component parentComponent,
Object message,
String title,
int optionType,
int messageType,
Icon icon)
Brings up a dialog with a specified icon, where the number of choices is
determined by the
optionType parameter. |
static String |
showInputDialog(Component parentComponent,
Object message)
Shows a question-message dialog requesting input from the user parented
to
parentComponent. |
static String |
showInputDialog(Component parentComponent,
Object message,
Object initialSelectionValue)
Shows a question-message dialog requesting input from the user and
parented to
parentComponent. |
static String |
showInputDialog(Component parentComponent,
Object message,
String title,
int messageType)
Shows a dialog requesting input from the user parented to
parentComponent with the dialog having the title
title and message type messageType. |
static Object |
showInputDialog(Component parentComponent,
Object message,
String title,
int messageType,
Icon icon,
Object[] selectionValues,
Object initialSelectionValue)
Prompts the user for input in a blocking dialog where the initial
selection, possible selections, and all other options can be specified.
|
static String |
showInputDialog(Object message)
Shows a question-message dialog requesting input from the user.
|
static String |
showInputDialog(Object message,
Object initialSelectionValue)
Shows a question-message dialog requesting input from the user, with the
input value initialized to
initialSelectionValue. |
static int |
showInternalConfirmDialog(Component parentComponent,
Object message)
Brings up an internal dialog panel with the options Yes, No
and Cancel; with the title, Select an Option.
|
static int |
showInternalConfirmDialog(Component parentComponent,
Object message,
String title,
int optionType)
Brings up a internal dialog panel where the number of choices is
determined by the
optionType parameter. |
static int |
showInternalConfirmDialog(Component parentComponent,
Object message,
String title,
int optionType,
int messageType)
Brings up an internal dialog panel where the number of choices is
determined by the
optionType parameter, where the
messageType parameter determines the icon to display. |
static int |
showInternalConfirmDialog(Component parentComponent,
Object message,
String title,
int optionType,
int messageType,
Icon icon)
Brings up an internal dialog panel with a specified icon, where the
number of choices is determined by the
optionType parameter. |
static String |
showInternalInputDialog(Component parentComponent,
Object message)
Shows an internal question-message dialog requesting input from the user
parented to
parentComponent. |
static String |
showInternalInputDialog(Component parentComponent,
Object message,
String title,
int messageType)
Shows an internal dialog requesting input from the user parented to
parentComponent with the dialog having the title
title and message type messageType. |
static Object |
showInternalInputDialog(Component parentComponent,
Object message,
String title,
int messageType,
Icon icon,
Object[] selectionValues,
Object initialSelectionValue)
Prompts the user for input in a blocking internal dialog where the
initial selection, possible selections, and all other options can be
specified.
|
static void |
showInternalMessageDialog(Component parentComponent,
Object message)
Brings up an internal confirmation dialog panel.
|
static void |
showInternalMessageDialog(Component parentComponent,
Object message,
String title,
int messageType)
Brings up an internal dialog panel that displays a message using a
default icon determined by the
messageType parameter. |
static void |
showInternalMessageDialog(Component parentComponent,
Object message,
String title,
int messageType,
Icon icon)
Brings up an internal dialog panel displaying a message, specifying all
parameters.
|
static int |
showInternalOptionDialog(Component parentComponent,
Object message,
String title,
int optionType,
int messageType,
Icon icon,
Object[] options,
Object initialValue)
Brings up an internal dialog panel 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. |
static void |
showMessageDialog(Component parentComponent,
Object message)
Brings up an information-message dialog titled "Message".
|
static void |
showMessageDialog(Component parentComponent,
Object message,
String title,
int messageType)
Brings up a dialog that displays a message using a default icon
determined by the
messageType parameter. |
static void |
showMessageDialog(Component parentComponent,
Object message,
String title,
int messageType,
Icon icon)
Brings up a dialog displaying a message, specifying all parameters.
|
static int |
showOptionDialog(Component parentComponent,
Object message,
String title,
int optionType,
int messageType,
Icon icon,
Object[] options,
Object initialValue)
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. |
public static int showConfirmDialog(Component parentComponent, Object message)
parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaypublic static int showConfirmDialog(Component parentComponent, Object message, String title, int optionType)
optionType parameter.parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaytitle - the title string for the dialogoptionType - an int designating the options available on the dialog:
YES_NO_OPTION, YES_NO_CANCEL_OPTION,
or OK_CANCEL_OPTIONpublic static int showConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType)
optionType parameter, where the messageType
parameter determines the icon to display. The messageType
parameter is primarily used to supply a default icon from the Look and
Feel.parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is used.message - the Object to displaytitle - the title string for the dialogoptionType - an integer designating the options available on the dialog:
YES_NO_OPTION, YES_NO_CANCEL_OPTION,
or OK_CANCEL_OPTIONmessageType - an integer designating the kind of message this is; primarily
used to determine the icon from the pluggable Look and Feel:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEpublic static int showConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon)
optionType parameter. The
messageType parameter is primarily used to supply a default
icon from the look and feel.parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaytitle - the title string for the dialogoptionType - an int designating the options available on the dialog:
YES_NO_OPTION, YES_NO_CANCEL_OPTION,
or OK_CANCEL_OPTIONmessageType - an int designating the kind of message this is, primarily used
to determine the icon from the pluggable Look and Feel:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEicon - the icon to display in the dialogpublic static String showInputDialog(Component parentComponent, Object message)
parentComponent. The dialog is displayed on top of the
Component's frame, and is usually positioned below the
Component.parentComponent - the parent Component for the dialogmessage - the Object to displaynull meaning the user canceled the
inputpublic static String showInputDialog(Component parentComponent, Object message, Object initialSelectionValue)
parentComponent. The input value will be
initialized to initialSelectionValue. The dialog is
displayed on top of the Component's frame, and is usually
positioned below the Component.parentComponent - the parent Component for the dialogmessage - the Object to displayinitialSelectionValue - the value used to initialize the input fieldnull meaning the user canceled the
inputpublic static String showInputDialog(Component parentComponent, Object message, String title, int messageType)
parentComponent with the dialog having the title
title and message type messageType.parentComponent - the parent Component for the dialogmessage - the Object to displaytitle - the String to display in the dialog title barmessageType - the type of message that is to be displayed:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEnull meaning the user canceled the
inputpublic static Object showInputDialog(Component parentComponent, Object message, String title, int messageType, Icon icon, Object[] selectionValues, Object initialSelectionValue)
selectionValues, where
null implies the user can input whatever they wish, usually
by means of a JTextField. initialSelectionValue
is the initial value to prompt the user with. It is up to the UI to
decide how best to represent the selectionValues, but
usually a JComboBox, JList, or
JTextField will be used.parentComponent - the parent Component for the dialogmessage - the Object to displaytitle - the String to display in the dialog title barmessageType - the type of message to be displayed:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEicon - the Icon image to displayselectionValues - an array of Objects that gives the possible
selectionsinitialSelectionValue - the value used to initialize the input fieldnull meaning the user canceled the
inputpublic static String showInputDialog(Object message)
message - the Object to displaynull meaning the user canceled the
inputpublic static String showInputDialog(Object message, Object initialSelectionValue)
initialSelectionValue. The dialog
uses the default frame, which usually means it is centered on the screen.message - the Object to displayinitialSelectionValue - the value used to initialize the input fieldnull meaning the user canceled the
inputpublic static int showInternalConfirmDialog(Component parentComponent, Object message)
parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaypublic static int showInternalConfirmDialog(Component parentComponent, Object message, String title, int optionType)
optionType parameter.parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the object to display in the dialog; a Component
object is rendered as a Component; a
String object is rendered as a string; other
objects are converted to a String using the
toString methodtitle - the title string for the dialogoptionType - an integer designating the options available on the dialog:
YES_NO_OPTION, or
YES_NO_CANCEL_OPTIONpublic static int showInternalConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType)
optionType parameter, where the
messageType parameter determines the icon to display. The
messageType parameter is primarily used to supply a default
icon from the Look and Feel.parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the object to display in the dialog; a Component
object is rendered as a Component; a
String object is rendered as a string; other
objects are converted to a String using the
toString methodtitle - the title string for the dialogoptionType - an integer designating the options available on the dialog:
YES_NO_OPTION, or
YES_NO_CANCEL_OPTIONmessageType - an integer designating the kind of message this is, primarily
used to determine the icon from the pluggable Look and Feel:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEpublic static int showInternalConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon)
optionType parameter.
The messageType parameter is primarily used to supply a
default icon from the look and feel.parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the parentComponent has
no Frame, a default Frame is usedmessage - the object to display in the dialog; a Component
object is rendered as a Component; a
String object is rendered as a string; other
objects are converted to a String using the
toString methodtitle - the title string for the dialogoptionType - an integer designating the options available on the dialog:
YES_NO_OPTION, or
YES_NO_CANCEL_OPTION.messageType - an integer designating the kind of message this is, primarily
used to determine the icon from the pluggable Look and Feel:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEicon - the icon to display in the dialogpublic static String showInternalInputDialog(Component parentComponent, Object message)
parentComponent. The dialog is displayed in the
Component's frame, and is usually positioned below the
Component.parentComponent - the parent Component for the dialogmessage - the Object to displaynull meaning the user canceled the
inputpublic static String showInternalInputDialog(Component parentComponent, Object message, String title, int messageType)
parentComponent with the dialog having the title
title and message type messageType.parentComponent - the parent Component for the dialogmessage - the Object to displaytitle - the String to display in the dialog title barmessageType - the type of message that is to be displayed: ERROR_MESSAGE,
INFORMATION_MESSAGE, WARNING_MESSAGE, QUESTION_MESSAGE, or
PLAIN_MESSAGEnull meaning the user canceled the
inputpublic static Object showInternalInputDialog(Component parentComponent, Object message, String title, int messageType, Icon icon, Object[] selectionValues, Object initialSelectionValue)
selectionValues
, where null implies the user can input whatever they wish,
usually by means of a JTextField.
initialSelectionValue is the initial value to prompt the
user with. It is up to the UI to decide how best to represent the
selectionValues, but usually a JComboBox,
JList, or JTextField will be used.parentComponent - the parent Component for the dialogmessage - the Object to displaytitle - the String to display in the dialog title barmessageType - the type of message to be displayed:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEicon - the Icon image to displayselectionValues - an array of Objects that gives the possible
selectionsinitialSelectionValue - the value used to initialize the input fieldnull meaning the user canceled the
inputpublic static void showInternalMessageDialog(Component parentComponent, Object message)
parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the object to displaypublic static void showInternalMessageDialog(Component parentComponent, Object message, String title, int messageType)
messageType parameter.parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaytitle - the title string for the dialogmessageType - the type of message to be displayed:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEpublic static void showInternalMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon)
parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaytitle - the title string for the dialogmessageType - the type of message to be displayed:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEicon - an icon to display in the dialog that helps the user identify
the kind of message that is being displayedpublic static int showInternalOptionDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon, Object[] options, Object initialValue)
initialValue parameter
and the number of choices is determined by the optionType
parameter.
If optionType is YES_NO_OPTION, or
YES_NO_CANCEL_OPTION and the options parameter
is null, then the options are supplied by the Look and Feel.
The messageType parameter is primarily used to supply a
default icon from the look and feel.
parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the object to display in the dialog; a Component
object is rendered as a Component; a
String object is rendered as a string. Other
objects are converted to a String using the
toString methodtitle - the title string for the dialogoptionType - an integer designating the options available on the dialog:
YES_NO_OPTION, or
YES_NO_CANCEL_OPTIONmessageType - an integer designating the kind of message this is; primarily
used to determine the icon from the pluggable Look and Feel:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEicon - the icon to display in the dialogoptions - an array of objects indicating the possible choices the user
can make; if the objects are components, they are rendered
properly; non-String objects are rendered using
their toString methods; if this parameter is
null, the options are determined by the Look and
FeelinitialValue - the object that represents the default selection for the
dialog; only meaningful if options is used; can
be nullCLOSED_OPTION if the user closed the Dialogpublic static void showMessageDialog(Component parentComponent, Object message)
parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaypublic static void showMessageDialog(Component parentComponent, Object message, String title, int messageType)
messageType parameter.parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaytitle - the title string for the dialogmessageType - the type of message to be displayed:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEpublic static void showMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon)
parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaytitle - the title string for the dialogmessageType - the type of message to be displayed:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEicon - an icon to display in the dialog that helps the user identify
the kind of message that is being displayedpublic static int showOptionDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon, Object[] options, Object initialValue)
initialValue parameter and the number of
choices is determined by the optionType parameter.
If optionType is YES_NO_OPTION, or
YES_NO_CANCEL_OPTION and the options parameter
is null, then the options are supplied by the look and feel.
The messageType parameter is primarily used to supply a
default icon from the look and feel.
parentComponent - determines the Frame in which the dialog is
displayed; if null, or if the
parentComponent has no Frame, a
default Frame is usedmessage - the Object to displaytitle - the title string for the dialogoptionType - an integer designating the options available on the dialog:
DEFAULT_OPTION, YES_NO_OPTION,
YES_NO_CANCEL_OPTION, or
OK_CANCEL_OPTIONmessageType - an integer designating the kind of message this is, primarily
used to determine the icon from the pluggable Look and Feel:
ERROR_MESSAGE, INFORMATION_MESSAGE,
WARNING_MESSAGE, QUESTION_MESSAGE,
or PLAIN_MESSAGEicon - the icon to display in the dialogoptions - an array of objects indicating the possible choices the user
can make; if the objects are components, they are rendered
properly; non-String objects are rendered using
their toString methods; if this parameter is
null, the options are determined by the Look and
FeelinitialValue - the object that represents the default selection for the
dialog; only meaningful if options is used; can
be nullCLOSED_OPTION if the user closed the dialogCopyright © 2013 Future Invent Informationsmanagement GmbH, Hamburg (Germany). All Rights Reserved.