blob: 5a759bf98c3944f737714a5660771ec5b1ab1267 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005-2014 Obeo
*
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.query.legacy.gen.template.eval;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* An iterator over an ENodeList
*
*
*/
public class ENodeIterator {
/**
* The iterator.
*/
protected Iterator iterator;
/**
* Creates an iterator over the elements in the given list.
*
* @param list
* is the list
*/
protected ENodeIterator(ENodeList list) {
iterator = list.list.iterator();
}
/**
* Returns true if the iteration has more elements.
*
* @return true if the iterator has more elements
*/
public boolean hasNext() {
return iterator.hasNext();
}
/**
* Returns the next ENode in the iteration.
*
* @return the next ENode in the iteration
* @throws NoSuchElementException
* - iteration has no more elements
*/
public ENode next() {
return (ENode) iterator.next();
}
}