Show a notice message in the editor status bar.
(String msg)
| 2975 | * Show a notice message in the editor status bar. |
| 2976 | */ |
| 2977 | public void statusNotice(String msg) { |
| 2978 | if (msg == null) { |
| 2979 | new IllegalArgumentException("This code called statusNotice(null)").printStackTrace(); |
| 2980 | msg = ""; |
| 2981 | } |
| 2982 | status.notice(msg); |
| 2983 | } |
| 2984 | |
| 2985 | |
| 2986 | public void clearNotice(String msg) { |
no test coverage detected