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

Method setVisible

app/src/processing/app/ui/WebFrame.java:132–145  ·  view source on GitHub ↗
(final boolean visible)

Source from the content-addressed store, hash-verified

130
131
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
147
148 public void handleClose() {

Callers 1

runMethod · 0.95

Calls 1

startMethod · 0.45

Tested by

no test coverage detected