Skip to content

Instantly share code, notes, and snippets.

@jhuska
Created April 24, 2014 10:36
Show Gist options
  • Save jhuska/11249814 to your computer and use it in GitHub Desktop.
Save jhuska/11249814 to your computer and use it in GitHub Desktop.
public interface DataGrid<HEADER, RECORD, FOOTER> {
List<RECORD> getRow(int n);
RECORD getRecord(int row, int column);
int getNumberOfRows();
int getNumberOfColumns();
HEADER getHeader();
FOOTER getFooter();
}
@jstefek
Copy link

jstefek commented Apr 24, 2014

To by asi slo, mozna pridat jeste

RECORD getRecord(int numberOf/indexOf-Record);

aby si uzivatel nemusel hlidat sloupce a radky

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment