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