blob: 976924d4db55e93e3456c59f3599d51b59bf7470 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdi.internal.event;
import java.util.ListIterator;
import com.sun.jdi.event.Event;
import com.sun.jdi.event.EventIterator;
/**
* this class implements the corresponding interfaces
* declared by the JDI specification. See the com.sun.jdi package
* for more information.
*
*/
public class EventIteratorImpl implements EventIterator {
/** List iterator implementation of iterator. */
private ListIterator fIterator;
/**
* Creates new EventIteratorImpl.
*/
public EventIteratorImpl(ListIterator iter) {
fIterator = iter;
}
/**
* @return Returns next Event from EventSet.
*/
public Event nextEvent() {
return (Event)fIterator.next();
}
/**
* @see java.util.Iterator#hasNext()
*/
public boolean hasNext() {
return fIterator.hasNext();
}
/**
* @see java.util.Iterator#next()
*/
public Object next() {
return fIterator.next();
}
/**
* @see java.util.Iterator#remove()
* @exception UnsupportedOperationException always thrown since EventSets are unmodifiable.
*/
public void remove() {
throw new UnsupportedOperationException(EventMessages.getString("EventIteratorImpl.EventSets_are_unmodifiable_1")); //$NON-NLS-1$
}
}