<?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
require_once 'Item.php';
*/
class Pregunta extends Item
{
- // Attributes
- /**
- * XXX
- * @access public
- */
- var $activa;
-
- /**
- * XXX
- * @access public
- */
- var $respuestas;
-
- // Operations
+ var $id;
+ var $activa;
+ var $respuestas;
+
+ function Mostrar()
+ {
+ echo "----------------------------------------------------------------<br>";
+ echo "#".$this->id." Fecha: ".$this->fecha."<br>";;
+ //echo $this->autor."<br>";
+ echo $this->texto."<br>";
+
+ if ( count ( $this->respuestas ) != 0 )
+ {
+ foreach ( $this->respuestas as $objRespuesta )
+ {
+ $objRespuesta->Mostrar();
+ }
+ }
+ }
}
?>
\ No newline at end of file