Beispiel #1
0
 public function setParent(AeInterface_Xml_Element $element)
 {
     // *** Remove current parent first
     if ($this->hasParent()) {
         $this->_parent->removeChild($this);
     }
     // *** Add entity as element's child
     $this->_parent = $element;
     return $this;
 }