Source of 2.11.java


  1: @author Frank M. Carrano, Timothy M. Henry
  2: @version 5.0
  3: // Returns true if this bag is full, or false if not.
  4:         private boolean isArrayFull()
  5:         {
  6:                 return numberOfEntries >= bag.length;
  7:         } // end isArrayFull