1 17 package org.apache.commons.collections.primitives.decorators; 18 19 import org.apache.commons.collections.primitives.IntIterator; 20 21 28 abstract class ProxyIntIterator implements IntIterator { 29 ProxyIntIterator() { 30 } 31 32 public boolean hasNext() { 33 return getIterator().hasNext(); 34 } 35 36 public int next() { 37 return getIterator().next(); 38 } 39 40 protected abstract IntIterator getIterator(); 41 } 42 | Popular Tags |