]> git.argeo.org Git - lgpl/argeo-commons.git/blob - basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularContent.java
Introduce reference doc
[lgpl/argeo-commons.git] / basic / runtime / org.argeo.basic.nodeps / src / main / java / org / argeo / util / tabular / TabularContent.java
1 package org.argeo.util.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<String> getHeaders();
12 }