@author Frank M. Carrano, Timothy M. Henry
@version 5.0
	/** Removes all entries from this bag. */
	public void clear() 
	{
		while (!isEmpty()) 
         remove();
	} // end clear
	
