|
From: Pelle B. <pe...@us...> - 2004-03-25 22:16:11
|
Update of /cvsroot/neuclear/neuclear-ledger-hibernate/src/java/org/neuclear/ledger/hibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16357/src/java/org/neuclear/ledger/hibernate Added Files: HibernateBookBrowser.java Log Message: First shell of the HibernateBookBrowser --- NEW FILE: HibernateBookBrowser.java --- package org.neuclear.ledger.hibernate; import org.neuclear.ledger.LowlevelLedgerException; import org.neuclear.ledger.browser.BookBrowser; import java.util.Iterator; /* NeuClear Distributed Transaction Clearing Platform (C) 2003 Pelle Braendgaard This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA $Id: HibernateBookBrowser.java,v 1.1 2004/03/25 22:05:20 pelle Exp $ $Log: HibernateBookBrowser.java,v $ Revision 1.1 2004/03/25 22:05:20 pelle First shell of the HibernateBookBrowser */ /** * User: pelleb * Date: Mar 25, 2004 * Time: 10:00:41 PM */ public class HibernateBookBrowser extends BookBrowser { public HibernateBookBrowser(Iterator iter, String book) { super(book); this.iter = iter; } public boolean next() throws LowlevelLedgerException { return false; } private final Iterator iter; } |