01: // kelondroCloneableIterator.java
02: // (C) 2007 by Michael Peter Christen; mc@anomic.de, Frankfurt a. M., Germany
03: // first published 08.03.2007 on http://www.anomic.de
04: //
05: // This is a part of YaCy, a peer-to-peer based web search engine
06: //
07: // $LastChangedDate: 2006-04-02 22:40:07 +0200 (So, 02 Apr 2006) $
08: // $LastChangedRevision: 1986 $
09: // $LastChangedBy: orbiter $
10: //
11: // LICENSE
12: //
13: // This program is free software; you can redistribute it and/or modify
14: // it under the terms of the GNU General Public License as published by
15: // the Free Software Foundation; either version 2 of the License, or
16: // (at your option) any later version.
17: //
18: // This program is distributed in the hope that it will be useful,
19: // but WITHOUT ANY WARRANTY; without even the implied warranty of
20: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21: // GNU General Public License for more details.
22: //
23: // You should have received a copy of the GNU General Public License
24: // along with this program; if not, write to the Free Software
25: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26:
27: package de.anomic.kelondro;
28:
29: import java.util.Iterator;
30:
31: public interface kelondroCloneableIterator<E> extends Iterator<E> {
32:
33: // clone the iterator using a modifier
34: // the modifier can be i.e. a re-start position
35: public kelondroCloneableIterator<E> clone(Object modifier);
36:
37: }
|