1 /*
2 * Angkor Web Framework
3 *
4 * Distributable under LGPL license.
5 * See terms of license at gnu.org.
6 */
7
8 package com.tirsen.angkor.table;
9
10 /***
11 * <!-- $Id: TableDataAccess.java,v 1.3 2002/10/09 21:37:37 tirsen Exp $ -->
12 * <!-- $Author: tirsen $ -->
13 *
14 * @author Jon Tirs´n (tirsen@users.sourceforge.net)
15 * @version $Revision: 1.3 $
16 */
17 public interface TableDataAccess
18 {
19 public TableModel create();
20
21 public void load(TableModel model) throws Exception;
22
23 public void setRange(int from, int to);
24
25 /***
26 * Must be called <em>after</em> initial call to {@link #load}.
27 * @throws IllegalStateException if called before initial call to {@link #load}.
28 */
29 public int getRowCount();
30 }
This page was automatically generated by Maven