- /*-
- * See the file LICENSE for redistribution information.
- *
- * Copyright (c) 2000
- * Sleepycat Software. All rights reserved.
- *
- * $Id: DbAppendRecno.java,v 11.1 2000/07/31 20:28:30 dda Exp $
- */
- package com.sleepycat.db;
- /*
- * This interface is used by Db.set_append_recno()
- *
- */
- public interface DbAppendRecno
- {
- public abstract void db_append_recno(Db db, Dbt data, int recno)
- throws DbException;
- }
- // end of DbAppendRecno.java