MCPcopy Create free account
hub / github.com/benfry/processing4 / link

Method link

core/src/processing/core/PApplet.java:3069–3074  ·  view source on GitHub ↗

Links to a webpage either in the same window or in a new window. The complete URL must be specified. @param url the complete URL, as a String in quotes

(String url)

Source from the content-addressed store, hash-verified

3067 * @param url the complete URL, as a String in quotes
3068 */
3069 public void link(String url) {
3070 if (!surface.openLink(url)) {
3071 // Just pass it off to launch() and hope for the best
3072 launch(url);
3073 }
3074 }
3075
3076
3077 static String openLauncher;

Callers

nothing calls this directly

Calls 2

launchMethod · 0.95
openLinkMethod · 0.65

Tested by

no test coverage detected