Displays a message in a dialog box titled "Message". Writes the Java console if ImageJ is not present.
(String msg)
| 865 | /** Displays a message in a dialog box titled "Message". |
| 866 | Writes the Java console if ImageJ is not present. */ |
| 867 | public static void showMessage(String msg) { |
| 868 | showMessage("Message", msg); |
| 869 | } |
| 870 | |
| 871 | /** Displays a message in a dialog box with the specified title. |
| 872 | Displays HTML formatted text if 'msg' starts with "<html>". |
no test coverage detected