]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularContent.java
First working tabular content in JCR
[lgpl/argeo-commons.git] / basic / runtime / org.argeo.basic.nodeps / src / main / java / org / argeo / util / tabular / TabularContent.java
index d5d05192c355c69f6482fa022dc56efbb04747e9..eadfda34cbdf9c5fce94019587c0498402a85fb5 100644 (file)
@@ -8,5 +8,7 @@ import java.util.List;
  */
 public interface TabularContent {
        /** The headers of this table or <code>null</code> is none available. */
-       public List<String> getHeaders();
+       public List<TabularColumn> getColumns();
+
+       public TabularRowIterator read();
 }