+
+ /**
+ * Actualiza atributos de la tabla interna.
+ *
+ * @param mixed $attrs Html attributes
+ * @access public
+ * @return void
+ * @deprecated Usar $renderer->tabla->updateAttributes().
+ */
+ function updateAttributes($attrs) {
+ $this->tabla->updateAttributes($attrs);
+ }
+ /**
+ * Setea atributos.
+ *
+ * @param mixed $attrs Html attributes
+ * @access public
+ * @return void
+ * @deprecated Usar $renderer->tabla->setAttributes().
+ */
+ function setAttributes($attrs) {
+ $this->tabla->setAttributes($attrs);
+ }
+ /**
+ * Obtiene atributos.
+ *
+ * @access public
+ * @return mixed
+ * @deprecated Usar $renderer->tabla->getAttributes().
+ */
+ function getAttributes() {
+ return $this->tabla->getAttributes();
+ }
+
+ /**
+ * Setea la tabla que utilizará el renderer.
+ *
+ * @param Tabla $param Objeto tabla alternativo para utilizar
+ *
+ * @access public
+ *
+ * @deprecated Usar $renderer->tabla.
+ */
+ function setTable(&$param) {
+ $this->tabla =& $param;
+ }
+
+ function getCSS() {
+ return $this->tabla->getCSS();
+ }