package org.argeo.api.tabular; import java.util.List; /** * Content organized as a table, possibly with headers. Only JCR types are * supported even though there is not direct dependency on JCR. */ public interface TabularContent { /** The headers of this table or null is none available. */ public List getColumns(); public TabularRowIterator read(); }