/**
  * Gets the swiss child type for the named child
  * @param string $child
  * @returns string, the swiss child type
  */
 public function getChildType($child)
 {
     $editors = $this->getDisplayEditors();
     if (array_key_exists($child, $editors)) {
         return $editors[$child];
     }
     return parent::getChildType($child);
 }
 public function rewind()
 {
     $this->ensureFields();
     parent::rewind();
 }
 public function getAjaxJSNodes()
 {
     return parent::getAjaxJSNodes() . ',sortable';
 }
 public function getChildType($child)
 {
     switch ($child) {
         case 'merges':
             return 'CustomReports_ReportView_Merges';
         default:
             return parent::getChildType($child);
     }
 }
 public function rewind()
 {
     $this->ensureLinkableReports();
     parent::rewind();
 }