*/
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