protected function makeComponentList($defaultComponentList)
 {
     $entityList = array();
     foreach ($this->entityComponentList as $item) {
         if (!isset($defaultComponentList[$item['uniqName']])) {
             $this->entityClonedNameList[] = $item['uniqName'];
         }
         $entityList[$item['uniqName']] = $item;
     }
     return parent::makeComponentList(array_merge($defaultComponentList, $entityList));
 }