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

Method main

app/src/processing/app/BaseSplash.java:10–23  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

8
9public class BaseSplash {
10 static public void main(String[] args) {
11 try {
12 final boolean hidpi = Toolkit.highResImages();
13 final String filename = "lib/about-" + (hidpi ? 2 : 1) + "x.png";
14 File splashFile = Platform.getContentFile(filename);
15 SplashWindow.splash(splashFile.toURI().toURL(), hidpi);
16 SplashWindow.invokeMain("processing.app.Base", args);
17 SplashWindow.disposeSplash();
18 } catch (Exception e) {
19 e.printStackTrace();
20 // !@#!@$$! umm
21 //SplashWindow.invokeMain("processing.app.Base", args);
22 }
23 }
24}

Callers

nothing calls this directly

Calls 6

highResImagesMethod · 0.95
getContentFileMethod · 0.95
splashMethod · 0.95
invokeMainMethod · 0.95
disposeSplashMethod · 0.95
printStackTraceMethod · 0.45

Tested by

no test coverage detected