/**
  * Configures a cell view for the type hierarchy.
  *
  * @param CellView        $view
  * @param ColumnInterface $column
  * @param array           $options
  */
 public function buildCellView(CellView $view, ColumnInterface $column, array $options)
 {
     if (null !== $this->parent) {
         $this->parent->buildCellView($view, $column, $options);
     }
     $this->innerType->buildCellView($view, $column, $options);
     foreach ($this->typeExtensions as $extension) {
         $extension->buildCellView($view, $column, $options);
     }
 }