コード例 #1
0
ファイル: RtfControlWord.php プロジェクト: PhenX/PhpRtfToHtml
 /**
  * (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
ファイル: RtfRichText.php プロジェクト: PhenX/PhpRtfToHtml
 /**
  * (non-PHPdoc)
  * @see RtfElement::equals()
  */
 public function equals($object)
 {
     return parent::equals($object) && $this->text === $object->text;
 }
コード例 #4
0
ファイル: RtfGroup.php プロジェクト: PhenX/PhpRtfToHtml
 /**
  * (non-PHPdoc)
  * @see RtfElement::__destruct()
  */
 public function __destruct()
 {
     $this->parent = null;
     $this->children = array();
     parent::__destruct();
 }