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

Method save

core/src/processing/data/StringDict.java:579–583  ·  view source on GitHub ↗

Save tab-delimited entries to a file (TSV format, UTF-8 encoding)

(File file)

Source from the content-addressed store, hash-verified

577 * Save tab-delimited entries to a file (TSV format, UTF-8 encoding)
578 */
579 public void save(File file) {
580 PrintWriter writer = PApplet.createWriter(file);
581 write(writer);
582 writer.close();
583 }
584
585
586 /**

Callers

nothing calls this directly

Calls 3

createWriterMethod · 0.95
writeMethod · 0.95
closeMethod · 0.45

Tested by

no test coverage detected