- $this->_hijos = array();
- $hijo = new GrupoSecciones;
- $err = $hijo->cargar($result);
- while (!PEAR::isError($err)) {
- $this->_hijos[] = $hijo->__clone();
- $err = $hijo->cargar($result);
- }
- // Si no hay mas resultados, entonces terminó bien.
- if (AI_Error::isError($err)
- and $err->getCode() == AI_ERROR_NO_RESULTADOS) {
- return true;
- }
- // Si no, se devuelve el error.
- return $err;
- }
- // -X2C
-
- // +X2C Operation 500
- /**
- * @return GrupoSecciones
- * @access public
- */
- function __clone() // ~X2C
- {
- return $this;