Source of 2.11.java


  1:         // Returns true if this bag is full, or false if not.
  2:         public boolean isArrayFull()
  3:         {
  4:                 return numberOfEntries >= bag.length;
  5:         } // end isArrayFull