We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a859b commit 0ef6e24Copy full SHA for 0ef6e24
core/src/processing/data/Table.java
@@ -3,6 +3,7 @@
3
/*
4
Part of the Processing project - http://processing.org
5
6
+ Copyright (c) 2013-16 The Processing Foundation
7
Copyright (c) 2011-13 Ben Fry and Casey Reas
8
Copyright (c) 2006-11 Ben Fry
9
core/src/processing/data/TableRow.java
@@ -22,6 +22,8 @@
22
23
package processing.data;
24
25
+import java.io.PrintWriter;
26
+
27
/**
28
* @webref data:composite
29
* @see Table
@@ -131,4 +133,10 @@ public interface TableRow {
131
133
public int getColumnType(int column);
132
134
135
public int[] getColumnTypes();
136
137
+ public String getColumnTitle(int column);
138
+ public String[] getColumnTitles();
139
140
+ public void write(PrintWriter writer);
141
+ public void print();
142
}
0 commit comments