blob: e3117e920a101d8de8bff983e7d10a74581b00cd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 NumberFour AG
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* NumberFour AG - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.utils;
import java.util.Iterator;
public abstract class CompoundIterator<E> implements Iterator<E> {
protected Iterator<E> current;
public boolean hasNext() {
if (current.hasNext()) {
return true;
}
return fetchNext();
}
protected abstract boolean fetchNext();
public E next() {
return current.next();
}
public void remove() {
throw new UnsupportedOperationException();
}
}