public boolean hasAvailablePoints() {
   for (final AptitudeBonusCategoryView categoryView : this.m_categories) {
     if (categoryView.availablePointsForCategory() > 0) {
       return true;
     }
   }
   return false;
 }