KT-2640 Provide jet.MutableIterator and jet.MutableIterable

#KT-2640 fixed
This commit is contained in:
Svetlana Isakova
2012-08-24 15:07:00 +04:00
parent 422b938728
commit 0dcdaccad1
21 changed files with 175 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
package test;
import java.util.Iterator;
public interface LoadIterator<T> {
public Iterator<T> getIterator();
public void setIterator(Iterator<T> iterator);
}