コード例 #1
0
ファイル: SmallElement.php プロジェクト: valderman/typhpist
 public function appendChild(ITextLevelElement $e)
 {
     parent::appendChild($e);
 }
コード例 #2
0
ファイル: TableElement.php プロジェクト: valderman/typhpist
 /**
  * Append a child node to this element.
  * Note that a table may only contain table parts.
  * @param $e The element to add.
  */
 public function appendChild(XHtmlTableElement $e)
 {
     parent::appendChild($e);
 }
コード例 #3
0
 public function appendChild(IFieldsetContent $e)
 {
     parent::appendChild($e);
 }
コード例 #4
0
ファイル: LinkElement.php プロジェクト: valderman/typhpist
 public function appendChild(IInlineElementNoLink $e)
 {
     parent::appendChild($e);
 }
コード例 #5
0
ファイル: DlElement.php プロジェクト: valderman/typhpist
 /**
  * Append a new child node to this element.
  * Note that only DD and DT tags may be found inside a DL.
  * @param XHtmlDefinitionListElement $e The element to add.
  */
 public function appendChild(XHtmlDefinitionListElement $e)
 {
     parent::appendChild($e);
 }
コード例 #6
0
ファイル: DivElement.php プロジェクト: valderman/typhpist
 public function appendChild(IFlowElement $e)
 {
     parent::appendChild($e);
 }
コード例 #7
0
ファイル: PreElement.php プロジェクト: valderman/typhpist
 public function appendChild(IPreContent $e)
 {
     parent::appendChild($e);
 }
コード例 #8
0
ファイル: FormElement.php プロジェクト: valderman/typhpist
 public function appendChild(IBlockNoForm $e)
 {
     parent::appendChild($e);
 }