klappt nur leider nich weil anscheinend wieder impliziert auf row konvertiert =(
PHP-Code:
public function addRow(RowData $r=null){
if($r==null){
$this->addRow(new Row($this->getColumns()->getCount()));
} elseif($r instanceof RowData){
if($r->getCount()==$this->getColumns()->getCount()){
$this->_rows[]=$r;
} else {
throw new Exception("Row doesn't fit in table");
}
} else {
throw new Exception("Invalid type of parameter");
}
}
Einen Kommentar schreiben: