Massive Argeo APIs refactoring
[lgpl/argeo-commons.git] / org.argeo.api / src / org / argeo / api / tabular / TabularRow.java
diff --git a/org.argeo.api/src/org/argeo/api/tabular/TabularRow.java b/org.argeo.api/src/org/argeo/api/tabular/TabularRow.java
deleted file mode 100644 (file)
index a79b072..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-package org.argeo.api.tabular;
-
-/** A row of tabular data */
-public interface TabularRow {
-       /** The value at this column index */
-       public Object get(Integer col);
-
-       /** The raw objects (direct references) */
-       public Object[] toArray();
-
-       /** Number of columns */
-       public int size();
-}