/**
  * Adds a tag for this definition.
  *
  * @param string $name       The tag name
  * @param array  $attributes An array of attributes
  *
  * @return ehough_iconic_Definition The current instance
  *
  * @api
  */
 public function addTag($name, array $attributes = array())
 {
     $this->_delegate->addTag($name, $attributes);
     return parent::addTag($name, $attributes);
 }