MCPcopy Index your code
hub / github.com/benfry/processing4 / rebuild

Method rebuild

java/src/processing/mode/java/JavaEditor.java:182–194  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

180 public EditorHeader createHeader() {
181 return new EditorHeader(this) {
182 public void rebuild() {
183 super.rebuild();
184
185 // after Rename and New Tab, we may have new .java tabs
186
187 if (preprocService != null) {
188 int currentTabCount = sketch.getCodeCount();
189 if (currentTabCount != previousTabCount) {
190 previousTabCount = currentTabCount;
191 sketchChanged();
192 }
193 }
194 }
195 };
196 }
197

Callers

nothing calls this directly

Calls 2

sketchChangedMethod · 0.95
getCodeCountMethod · 0.80

Tested by

no test coverage detected