add print() and write() to Table and TableRow (fixes #4396)

This commit is contained in:
Ben Fry
2016-05-08 14:31:29 -04:00
parent 6f0b8ce04d
commit 171195426d
4 changed files with 36 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
package processing.data;
import java.io.PrintWriter;
/**
* @webref data:composite
* @see Table
@@ -112,4 +114,7 @@ public interface TableRow {
public String getColumnTitle(int column);
public String[] getColumnTitles();
public void write(PrintWriter writer);
public void print();
}