]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.acr/src/org/argeo/api/acr/tabular/TabularContent.java
Merge tag 'v2.3.18' into testing
[lgpl/argeo-commons.git] / org.argeo.api.acr / src / org / argeo / api / acr / tabular / TabularContent.java
1 package org.argeo.api.acr.tabular;
2
3 import java.util.List;
4
5 /**
6 * Content organized as a table, possibly with headers. Only JCR types are
7 * supported even though there is not direct dependency on JCR.
8 */
9 public interface TabularContent {
10 /** The headers of this table or <code>null</code> is none available. */
11 public List<TabularColumn> getColumns();
12
13 public TabularRowIterator read();
14 }