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

Method save

core/src/processing/data/JSONArray.java:1102–1107  ·  view source on GitHub ↗
(File file, String options)

Source from the content-addressed store, hash-verified

1100
1101
1102 public boolean save(File file, String options) {
1103 PrintWriter writer = PApplet.createWriter(file);
1104 boolean success = write(writer, options);
1105 writer.close();
1106 return success;
1107 }
1108
1109
1110 public boolean write(PrintWriter output) {

Callers

nothing calls this directly

Calls 3

createWriterMethod · 0.95
writeMethod · 0.95
closeMethod · 0.45

Tested by

no test coverage detected