Class Queue

java.lang.Object
  |
  +--Queue

public class Queue
extends java.lang.Object


Field Summary
protected  java.util.Vector queue
           
 
Constructor Summary
Queue()
           
 
Method Summary
 void add(java.lang.Object item)
           
 boolean isEmpty()
           
 java.lang.Object remove()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

queue

protected java.util.Vector queue
Constructor Detail

Queue

public Queue()
Method Detail

remove

public java.lang.Object remove()
                        throws java.lang.InterruptedException

add

public void add(java.lang.Object item)

isEmpty

public boolean isEmpty()