Java 2 Platform
v1.3

edu.umich.visualsoar.util
Interface Queue

All Known Implementing Classes:
QueueAsLinkedList

public interface Queue

This class is based on Object-Oriented Design patterns in C++, later converted to Java This is an interface to a Queue


Method Summary
 java.lang.Object dequeue()
           
 void enqueue(java.lang.Object o)
           
 boolean isEmpty()
           
 

Method Detail

enqueue

public void enqueue(java.lang.Object o)

dequeue

public java.lang.Object dequeue()

isEmpty

public boolean isEmpty()

Java 2 Platform
v1.3