01: /*
02: * To change this template, choose Tools | Templates
03: * and open the template in the editor.
04: */
05:
06: package org.netbeans.modules.bpel.mapper.tree.spi;
07:
08: import java.util.Iterator;
09:
10: /**
11: * The iterator which can be used multiple times.
12: *
13: * @author nk160297
14: */
15: public interface RestartableIterator<T> extends Iterator<T> {
16:
17: /**
18: * Set iterator to initial state.
19: */
20: void restart();
21:
22: }
|