1 | <?php |
||
8 | class HtmlTable extends HtmlSemDoubleElement { |
||
9 | private $_colCount; |
||
10 | public function __construct($identifier, $rowCount, $colCount) { |
||
15 | |||
16 | /** |
||
17 | * @param string $key |
||
18 | * @return HtmlTableContent |
||
19 | */ |
||
20 | private function getPart($key){ |
||
29 | |||
30 | public function getBody(){ |
||
33 | |||
34 | public function getHeader(){ |
||
37 | |||
38 | public function getFooter(){ |
||
41 | |||
42 | public function hasPart($key){ |
||
45 | |||
46 | public function setRowCount($rowCount, $colCount) { |
||
50 | |||
51 | /** |
||
52 | * Returns the cell (HtmlTD) at position $row,$col |
||
53 | * @param int $row |
||
54 | * @param int $col |
||
55 | * @return \Ajax\semantic\html\content\HtmlTD |
||
56 | */ |
||
57 | public function getCell($row,$col){ |
||
60 | |||
61 | public function setValues($values=array()){ |
||
64 | } |