public function render()
 {
     $changeset = $this->getChangeset();
     $cells = array();
     $cells[] = $this->getContext();
     $cells[] = $this->renderPathChangeCharacter();
     $cells[] = $this->renderPropertyChangeCharacter();
     $cells[] = $this->renderPropertyChangeDescription();
     $path = $this->getChangeset()->getDisplayFilename();
     $line_renderer = new DifferentialLineNumberRendered($path, 0, 0);
     $cells[] = $line_renderer->getInfoTag();
     $link = $this->renderChangesetLink();
     $lines = $this->renderChangesetLines();
     $meta = $this->renderChangesetMetadata();
     $cells[] = array($link, $lines, $meta);
     $cells[] = $this->renderCoverage();
     $cells[] = $this->renderModifiedCoverage();
     $cells[] = $this->renderPackages();
     return $cells;
 }