]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.cms/src/org/argeo/cms/tabular/TabularRow.java
Make tree view more robust
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / tabular / TabularRow.java
1 package org.argeo.cms.tabular;
2
3 /** A row of tabular data */
4 public interface TabularRow {
5 /** The value at this column index */
6 public Object get(Integer col);
7
8 /** The raw objects (direct references) */
9 public Object[] toArray();
10
11 /** Number of columns */
12 public int size();
13 }