コード例 #1
0
ファイル: Table.php プロジェクト: Chocanto/autoTab
 public function __construct($_caption = '')
 {
     $this->caption = $_caption;
     $this->rows = array();
     parent::__construct();
 }
コード例 #2
0
ファイル: Cell.php プロジェクト: Chocanto/autoTab
 public function __construct($_content = '')
 {
     $this->content = $_content;
     parent::__construct();
 }