a874eb6f04
--HG-- branch : gsoc2012-achievements
21 lines
No EOL
357 B
PHP
21 lines
No EOL
357 B
PHP
<?php
|
|
abstract class RenderNodeIterator extends Parentum {
|
|
protected $nodes = array();
|
|
|
|
function getSize() {
|
|
return sizeof($this->nodes);
|
|
}
|
|
|
|
function getChild($i) {
|
|
return $this->nodes[$i];
|
|
}
|
|
|
|
function isEmpty() {
|
|
return (sizeof($this->nodes) == 0);
|
|
}
|
|
|
|
function getChildren() {
|
|
return $this->nodes;
|
|
}
|
|
}
|
|
?>
|