1 /*2 * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/lib/TKDBResultRow.java,v 1.6 2002/01/21 09:24:08 mischa Exp $3 *4 */5 package com.teamkonzept.lib;6 7 /**8 * Die Klasse TKDBResultRowHash implementiert das Interface9 * @author $Author: mischa $10 * @version $Revision: 1.6 $11 */ 12 public interface TKDBResultRow {13 boolean hasResult();14 Object getColumn( String colName );15 Object getColumn( int colIdx );16 String getColumnLabel( int colIdx );17 int getColumnCount();18 }19 20