blob: 197e8fd0482129516f93d9e8c4ce3c41834a11a8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2005 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wtp.releng.tools.component;
/**
* The <code>ILocationChildrenIterator</code> is a simple iterator that
* iterates over the children of a location. A <code>null</code> is returned
* when the end of the children list is reached.
*/
public interface ILocationChildrenIterator
{
/**
* Answers the next child location.
*
* @return ILocation The next child location, or <code>null</code> if there
* are no more children.
*/
ILocation next();
}