Subversion Repository Public Repository

litesoft

Diff Revisions 938 vs 939 for /trunk/Java/core/Server/src/org/litesoft/orsup/base/POQueryIterator.java

Diff revisions: vs.
  @@ -1,11 +1,11 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.orsup.base;
3 3
4 - import java.util.*;
4 + import org.litesoft.commonfoundation.interators.*;
5 5
6 - import org.litesoft.core.util.*;
6 + import java.util.*;
7 7
8 - public class POQueryIterator<T extends PersistentObject> extends AbstractReadOnlyIterator<T>
8 + public class POQueryIterator<T extends PersistentObject> extends Iterators.AbstractReadOnly<T>
9 9 {
10 10 public static final POQueryIterator<PersistentObject> INSTANCE = new POQueryIterator<PersistentObject>();
11 11