change set/getString() to set/get(), break TableRow out separately

This commit is contained in:
benfry
2012-05-18 19:08:52 +00:00
parent daed64d1d4
commit 312169756e
3 changed files with 100 additions and 93 deletions

View File

@@ -68,6 +68,11 @@ public class XML implements Serializable {
}
public XML(File file) {
this(PApplet.createReader(file));
}
public XML(Reader reader) {
try {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();