working on launch4j builder

This commit is contained in:
Ben Fry
2014-05-10 09:27:38 -04:00
parent 793b9a7771
commit 3513a01c59
2 changed files with 190 additions and 34 deletions

View File

@@ -260,6 +260,11 @@ public class XML implements Serializable {
// }
public boolean save(File file) {
return save(file, null);
}
public boolean save(File file, String options) {
PrintWriter writer = PApplet.createWriter(file);
boolean result = write(writer);