Example #1
0
 private boolean hasSingleSelectionInventory() {
   for (Inventory inventory : getInventories()) {
     if (inventory.isSingleSelection()) {
       setProjectError(
           "Project \""
               + getProjectId()
               + "\" has inventory that contains Single Selection , this is not supported\n");
       return true;
     }
   }
   return false;
 }