]> git.argeo.org Git - lgpl/argeo-commons.git/blob - tabular/TabularWriter.java
Prepare next development cycle
[lgpl/argeo-commons.git] / tabular / TabularWriter.java
1 package org.argeo.cms.tabular;
2
3
4 /** Write to a tabular content */
5 public interface TabularWriter {
6 /** Append a new row of data */
7 public void appendRow(Object[] row);
8
9 /** Finish persisting data and release resources */
10 public void close();
11 }