From: <th...@us...> - 2004-01-07 10:59:10
|
Update of /cvsroot/jaxme/JaxMe/src/runtime/de/ispsoft/jaxme In directory sc8-pr-cvs1:/tmp/cvs-serv17937/src/runtime/de/ispsoft/jaxme Added Files: ResultInfo.java Log Message: provide informations from tamino db result, e.g. cursor count --- NEW FILE: ResultInfo.java --- /* * Created on 06.01.2004 * */ package de.ispsoft.jaxme; /** * @author Thomas Haenel, ATC GmbH * @version $Id: ResultInfo.java,v 1.1 2004/01/07 10:58:57 thaenel Exp $ */ public class ResultInfo { // the count of elements found private int cursorCount = -1; /** * @return */ public int getCursorCount() { return cursorCount; } /** * @param i */ public void setCursorCount(int i) { cursorCount = i; } } |