+ $this->noticia = $noticia;
+ $db = MEconDAVDB::Connect();
+ $query = "SELECT headline, title, abstract, article, publication_date
+ FROM Articles
+ WHERE Article_id = $noticia";
+ $result = $db->query($query);
+ $row = $result->fetchRow();
+ $this->titulo = $row[0];
+ $this->titulo2 = $row[1];
+ $this->sintesis = $row[2];
+ $this->texto = $row[3];
+ $this->fecha = new Date($row[4]);
+ }
+ // -X2C
+
+ // +X2C Operation 180
+ /**
+ * @return string
+ * @access public
+ */
+ function getTitulo() // ~X2C
+ {
+ return $this->titulo;
+ }
+ // -X2C
+
+ // +X2C Operation 181
+ /**
+ * @return string
+ * @access public
+ */
+ function getTexto() // ~X2C
+ {
+ return $this->texto;
+ }
+ // -X2C
+
+ // +X2C Operation 182
+ /**
+ * @return string
+ * @access public
+ */
+ function getSintesis() // ~X2C
+ {
+ return $this->sintesis;
+ }
+ // -X2C
+
+ // +X2C Operation 183
+ /**
+ * @return string
+ * @access public
+ */
+ function getTitulo2() // ~X2C
+ {
+ return $this->titulo2;
+ }
+ // -X2C
+
+ // +X2C Operation 186
+ /**
+ * @return string
+ * @access public
+ */
+ function getFecha() // ~X2C
+ {
+ return $this->fecha;