blob: 28d78c6543f3fd8a7b4485ed8bf594f348ae749b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2016 NumberFour AG and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* 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;
@Override
public boolean hasNext() {
if (current.hasNext()) {
return true;
}
return fetchNext();
}
protected abstract boolean fetchNext();
@Override
public E next() {
return current.next();
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
}