List of utility methods to do JOptionPane Message
void | message(String s) message JOptionPane.showMessageDialog(null, s, "Message", JOptionPane.INFORMATION_MESSAGE);
|
void | messageBox(String s) message Box JOptionPane.showMessageDialog(null, s); |
boolean | msg(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);
|
void | Msg(JComponent parent, Object message) Msg JOptionPane.showMessageDialog(parent, message); |
void | msg(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); |
void | msg(String s) msg showMessageDialog(null, s); |
void | msgbox(Object message) msgbox JOptionPane.showMessageDialog(null, message); |
void | msgBox(String msg) msg Box javax.swing.JOptionPane.showConfirmDialog((java.awt.Component) null, msg, "WindowsUtils",
javax.swing.JOptionPane.DEFAULT_OPTION);
|
void | msgBox(String title, String message) msg Box msgBox(null, title, message); |
int | msgChoice(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);
|