コード例 #1
0
ファイル: TFootElement.php プロジェクト: valderman/typhpist
 /**
  * Append a child node to this element.
  * Note that a tfoot may only contain tr elements.
  * @param $e The element to add.
  */
 public function appendChild(TrElement $e)
 {
     parent::appendChild($e);
 }
コード例 #2
0
ファイル: TrElement.php プロジェクト: valderman/typhpist
 /**
  * Append a child node to this element.
  * Note that a tr may only contain td and th elements.
  * @param $e The element to add.
  */
 public function appendChild(XHtmlTableCellElement $e)
 {
     parent::appendChild($e);
 }