/**
  * Builds the HTML code for the main container
  *
  * @return String the HTML code
  */
 public function getHtml()
 {
     $ret = $this->indent() . \Html::openElement('div', array('class' => $this->getClassString()));
     $ret .= parent::getHtml();
     $ret .= $this->indent(-1) . '</div>';
     return $ret;
 }