firstChild
The method firstChild returns a reference to the first child html element in this androHtml object.
RETURN VALUE
reference - reference to first child element
function firstChild() {
if(count($this->children)==0) {
return null;
}
else {
$retval = &$this->children[0];
return $retval;
}
}