1: /** Removes all entries from this bag. */ 2: public void clear() 3: { 4: while (!isEmpty()) 5: remove(); 6: } // end clear 7: