From b44830105b65bd06e51f2a1701f3e936ecfeb64f Mon Sep 17 00:00:00 2001 From: nhauge Date: Tue, 3 Aug 2010 15:57:52 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'v201008030000'. --- .../utility/internal/iterators/QueueIterator.java | 59 ---------------------- 1 file changed, 59 deletions(-) delete mode 100644 jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/iterators/QueueIterator.java (limited to 'jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/iterators/QueueIterator.java') diff --git a/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/iterators/QueueIterator.java b/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/iterators/QueueIterator.java deleted file mode 100644 index 80d6b6a6ea..0000000000 --- a/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/iterators/QueueIterator.java +++ /dev/null @@ -1,59 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2009 Oracle. 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: - * Oracle - initial API and implementation - ******************************************************************************/ -package org.eclipse.jpt.utility.internal.iterators; - -import java.util.Iterator; - -import org.eclipse.jpt.utility.internal.Queue; -import org.eclipse.jpt.utility.internal.StringTools; - -/** - * A QueueIterator provides an {@link Iterator} - * for a {@link Queue} of objects of type E. The queue's elements - * are {@link Queue#dequeue() dequeue}d" as the iterator returns them with - * calls to {@link #next()}. - * - * @param the type of elements returned by the iterator - * - * @see Queue - * @see org.eclipse.jpt.utility.internal.iterables.QueueIterable - */ -public class QueueIterator - implements Iterator -{ - private final Queue queue; - - - /** - * Construct an iterator for the specified queue. - */ - public QueueIterator(Queue queue) { - super(); - this.queue = queue; - } - - public boolean hasNext() { - return ! this.queue.isEmpty(); - } - - public E next() { - return this.queue.dequeue(); - } - - public void remove() { - throw new UnsupportedOperationException(); - } - - @Override - public String toString() { - return StringTools.buildToStringFor(this, this.queue); - } - -} -- cgit v1.2.3