mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 18:10:43 +01:00
add print() and write() to Table and TableRow (fixes #4396)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user