blob: edc2c264c75e144d174d8fc9d7c5aca74a524949 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 IBM Corporation.
* 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 Implementation
*
*****************************************************************************/
package org.eclipse.ptp.remotetools.core;
import java.util.Enumeration;
public interface IRemoteFileEnumeration extends Enumeration<IRemoteItem> {
public IRemoteItem nextElementAsItem();
public Exception nextException();
public boolean hasMoreExceptions();
}