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

Method SketchCode

app/src/processing/app/SketchCode.java:85–96  ·  view source on GitHub ↗
(File file, String extension)

Source from the content-addressed store, hash-verified

83
84
85 public SketchCode(File file, String extension) {
86 this.file = file;
87 this.extension = extension;
88
89 makePrettyName();
90
91 try {
92 load();
93 } catch (IOException e) {
94 System.err.println("Error while loading code " + file.getName());
95 }
96 }
97
98
99 protected void makePrettyName() {

Callers

nothing calls this directly

Calls 4

makePrettyNameMethod · 0.95
loadMethod · 0.95
printlnMethod · 0.45
getNameMethod · 0.45

Tested by

no test coverage detected