01: /*
02: * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/lib/TKDBResultRow.java,v 1.6 2002/01/21 09:24:08 mischa Exp $
03: *
04: */
05: package com.teamkonzept.lib;
06:
07: /**
08: * Die Klasse TKDBResultRowHash implementiert das Interface
09: * @author $Author: mischa $
10: * @version $Revision: 1.6 $
11: */
12: public interface TKDBResultRow {
13: boolean hasResult();
14:
15: Object getColumn(String colName);
16:
17: Object getColumn(int colIdx);
18:
19: String getColumnLabel(int colIdx);
20:
21: int getColumnCount();
22: }
|