1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

BDB 4.1.24

This commit is contained in:
ram@mysql.r18.ru
2002-10-30 15:57:05 +04:00
parent 1c0f1712ca
commit 5e09392faa
1191 changed files with 171164 additions and 58171 deletions

View File

@ -0,0 +1,23 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2001-2002
* Sleepycat Software. All rights reserved.
*
* $Id: LocalIterator.java,v 1.2 2002/08/09 01:56:09 bostic Exp $
*/
package com.sleepycat.db.rpcserver;
import java.util.*;
/**
* Iterator interface. Note that this matches java.util.Iterator
* but maintains compatibility with Java 1.1
* Intentionally package-protected exposure.
*/
interface LocalIterator {
boolean hasNext();
Object next();
void remove();
}