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

Method run

app/src/processing/app/ui/WebFrame.java:134–143  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

132 public void setVisible(final boolean visible) {
133 new Thread(new Runnable() {
134 public void run() {
135 while (!ready) {
136 try {
137 Thread.sleep(5);
138 } catch (InterruptedException e) {
139 e.printStackTrace();
140 }
141 }
142 WebFrame.super.setVisible(visible);
143 }
144 }).start();
145 }
146

Callers

nothing calls this directly

Calls 3

setVisibleMethod · 0.95
setSizeMethod · 0.65
printStackTraceMethod · 0.45

Tested by

no test coverage detected