MCPcopy Index your code
hub / github.com/processing/processing / statusNotice

Method statusNotice

app/src/processing/app/ui/Editor.java:2977–2983  ·  view source on GitHub ↗

Show a notice message in the editor status bar.

(String msg)

Source from the content-addressed store, hash-verified

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) {

Callers 9

runMethod · 0.95
handleCopyAsHTMLMethod · 0.95
handleAutoFormatMethod · 0.95
handleFindReferenceMethod · 0.95
handleSaveImplMethod · 0.95
handleSaveAsMethod · 0.95
handlePrintMethod · 0.95
statusEmptyMethod · 0.95

Calls 2

noticeMethod · 0.80
printStackTraceMethod · 0.45

Tested by

no test coverage detected