]> git.argeo.org Git - lgpl/argeo-commons.git/blob - ux/widgets/TabularPart.java
Prepare next development cycle
[lgpl/argeo-commons.git] / ux / widgets / TabularPart.java
1 package org.argeo.cms.ux.widgets;
2
3 /** A tabular presentation of data. */
4 public interface TabularPart<INPUT, T> extends ColumnsPart<INPUT, T> {
5 int getItemCount();
6
7 T getData(int row);
8
9 Column<T> getColumn(int index);
10
11 void addColumn(Column<T> column);
12
13 int getColumnCount();
14 }