/**
 * Sets the document name
 *
 * @param   string  $name  Document name
 *
 * @return  JsonDocument instance of $this to allow chaining
 *
 * @since   1.7.0
 */
public function setName($name = 'joomla')
{
    $this->_name = $name;
    return $this;
}