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