setLogin($login); } } /** * Set the Buddy Login * * @param string $login Buddy Login * @return \FML\ManiaCode\AddBuddy */ public function setLogin($login) { $this->login = (string) $login; return $this; } /** * * @see \FML\ManiaCode\Element::render() */ public function render(\DOMDocument $domDocument) { $xmlElement = $domDocument->createElement($this->tagName); $loginElement = $domDocument->createElement('login', $this->login); $xmlElement->appendChild($loginElement); return $xmlElement; } }