01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: DxIterator.java,v 1.1 2001/12/18 10:31:30 per_nyfelt Exp $
08:
09: package org.ozoneDB.DxLib;
10:
11: import java.io.*;
12:
13: public interface DxIterator extends DxCompatible {
14:
15: final static long serialVersionUID = 1L;
16:
17: /**
18: */
19: public Object object();
20:
21: /**
22: */
23: public Object key();
24:
25: /**
26: */
27: public Object next();
28:
29: /**
30: */
31: public void reset();
32:
33: /**
34: */
35: public Object removeObject();
36: }
|