Java Utililty Methods JOptionPane Message

List of utility methods to do JOptionPane Message

Description

The list of methods to do JOptionPane Message are organized into topic(s).

Method

voidmessage(String s)
message
JOptionPane.showMessageDialog(null, s, "Message", JOptionPane.INFORMATION_MESSAGE);
voidmessageBox(String s)
message Box
JOptionPane.showMessageDialog(null, s);
booleanmsg(int options, String title, String msg, String item, String sep)
Show a message with options to choose from

Wrapper for JOptionPane with I18N support

return (msgChoice(options, title, msg, item, sep) == JOptionPane.YES_OPTION);
voidMsg(JComponent parent, Object message)
Msg
JOptionPane.showMessageDialog(parent, message);
voidmsg(String msg)
msg
if (msg.length() > 500) {
    JTextArea txt = new JTextArea(msg);
    txt.setRows(20);
    txt.setColumns(50);
    JOptionPane.showMessageDialog(null, new JScrollPane(txt));
} else
    JOptionPane.showMessageDialog(null, msg);
voidmsg(String s)
msg
showMessageDialog(null, s);
voidmsgbox(Object message)
msgbox
JOptionPane.showMessageDialog(null, message);
voidmsgBox(String msg)
msg Box
javax.swing.JOptionPane.showConfirmDialog((java.awt.Component) null, msg, "WindowsUtils",
        javax.swing.JOptionPane.DEFAULT_OPTION);
voidmsgBox(String title, String message)
msg Box
msgBox(null, title, message);
intmsgChoice(int options, String title, String msg, String item, String sep)
Show a message with options to choose from

Wrapper for JOptionPane with I18N support

String message = item + sep + msg;
return JOptionPane.showConfirmDialog(null, message, title, options, JOptionPane.QUESTION_MESSAGE);