public interface Queue
{
	boolean isEmpty( );
	boolean isFull( );
	void enqueue(Object member) throws FullQueueException;
	Object dequeue( ) throws EmptyQueueException;
	Object front( ) throws EmptyQueueException;
}

