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

Method save

core/src/processing/data/JSONObject.java:1574–1579  ·  view source on GitHub ↗
(File file, String options)

Source from the content-addressed store, hash-verified

1572
1573
1574 public boolean save(File file, String options) {
1575 PrintWriter writer = PApplet.createWriter(file);
1576 boolean success = write(writer, options);
1577 writer.close();
1578 return success;
1579 }
1580
1581
1582 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