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