01: package com.jamonapi.utils; 02: 03: /** Interface for array tabular data */ 04: public interface DetailData { 05: 06: public String[] getHeader(); 07: 08: public Object[][] getData(); 09: // public boolean hasData(); 10: // public boolean isEmpty(); 11: // public int getRowCount(); 12: 13: }