X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fdatastructures%2FQueue.java;h=fa778340ded6c84ea5e12ed9260f160a2db0a10a;hb=c0439ed8b088887ffea2faf11bc7897333287cb3;hp=c0c9c21dec95b3d40069575399377cd2d7a1196f;hpb=eee996a6476a1e3d84c07f8f690dcde3ff4b2ef5;p=jalview.git diff --git a/forester/java/src/org/forester/datastructures/Queue.java b/forester/java/src/org/forester/datastructures/Queue.java index c0c9c21..fa77834 100644 --- a/forester/java/src/org/forester/datastructures/Queue.java +++ b/forester/java/src/org/forester/datastructures/Queue.java @@ -21,7 +21,7 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA // // Contact: phylosoft @ gmail . com -// WWW: www.phylosoft.org/forester +// WWW: https://sites.google.com/site/cmzmasek/home/software/forester package org.forester.datastructures; @@ -31,9 +31,9 @@ import java.util.NoSuchElementException; /* * A simple Queue data structure. Created: 10/23/2005 by Christian M. Zmasek. * Last modified: 10/23/2005 by Christian M. Zmasek. - * + * * @author Christian M. Zmasek - * + * * @version 1.000 */ public class Queue { @@ -60,7 +60,7 @@ public class Queue { /** * Dequeues one element from this queue. - * + * * @return the dequeued object * @throws NoSuchElementException * if this queue is empty @@ -76,7 +76,7 @@ public class Queue { // -------------- /** * Adds Object element to thisqueue. - * + * * @param element * the Object to be enqueued */ @@ -88,7 +88,7 @@ public class Queue { // --------------- /** * Returns the LinkedList upon which this queue is based. - * + * * @return the LinkedList upon which this queue is based */ private LinkedList getData() { @@ -97,7 +97,7 @@ public class Queue { /** * Returns whether or not this queue is empty. - * + * * @return true if this queue is empty, false otherwise */ public boolean isEmpty() {