MCPcopy Index your code
hub / github.com/arduino/Arduino / EditorStatus

Method EditorStatus

app/src/processing/app/EditorStatus.java:96–104  ·  view source on GitHub ↗
(Editor editor)

Source from the content-addressed store, hash-verified

94 private ArrayList<CompilerProgressListener> compilerProgressListeners;
95
96 public EditorStatus(Editor editor) {
97 this.editor = editor;
98 this.message = NO_MESSAGE;
99 this.mode = NOTICE;
100 this.font = Theme.getFont("status.font");
101 this.compilerProgressListeners = new ArrayList<>();
102 this.compilerProgressListeners.add(this::progressUpdate);
103 initialize();
104 }
105
106 public void clearState() {
107 changeState(NOTICE);

Callers

nothing calls this directly

Calls 3

getFontMethod · 0.95
initializeMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected