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

Method handleLink

app/src/processing/app/ui/Welcome.java:111–122  ·  view source on GitHub ↗
(String link)

Source from the content-addressed store, hash-verified

109 */
110
111 @Override
112 public void handleLink(String link) {
113 // The link will already have the full URL prefix
114 if (link.endsWith("#sketchbook")) {
115 File folder = new File(Preferences.getSketchbookPath()).getParentFile();
116 PApplet.selectFolder(Language.text("preferences.sketchbook_location.popup"),
117 "sketchbookCallback", folder,
118 this, this);
119 } else {
120 super.handleLink(link);
121 }
122 }
123
124 @Override
125 public void handleClose() {

Callers

nothing calls this directly

Calls 3

getSketchbookPathMethod · 0.95
selectFolderMethod · 0.95
textMethod · 0.95

Tested by

no test coverage detected