예제 #1
0
 /**
  * (non-PHPdoc)
  * @see RtfElement::equals()
  */
 public function equals($object)
 {
     return parent::equals($object) && $this->word === $object->word && $this->parameter === $object->parameter;
 }
예제 #2
0
 /**
  * (non-PHPdoc)
  * @see RtfElement::__destruct()
  */
 public function __destruct()
 {
     parent::__destruct();
     $this->_symbol = null;
 }
예제 #3
0
 /**
  * (non-PHPdoc)
  * @see RtfElement::equals()
  */
 public function equals($object)
 {
     return parent::equals($object) && $this->text === $object->text;
 }
예제 #4
0
 /**
  * (non-PHPdoc)
  * @see RtfElement::__destruct()
  */
 public function __destruct()
 {
     $this->parent = null;
     $this->children = array();
     parent::__destruct();
 }