// *****************************************************************
// JMartínez.
// Noticia.js
// *****************************************************************

function Noticia(id,titulo,contenido,enlace,fecha)
{
	this.id=id;
	this.fecha=fecha;
	this.titulo=titulo;
	this.contenido=contenido;
	this.enlace=enlace;
	this.getFecha = Noticia_getFecha;
	this.getTitulo = Noticia_getTitulo;
	this.getContenido = Noticia_getContenido;
	this.getEnlace = Noticia_getEnlace;
}

function Noticia_getFecha(){
return this.fecha;
}

function Noticia_getTitulo(){
return this.titulo;
}

function Noticia_getContenido(){
return this.contenido;
}

function Noticia_getEnlace(){
return this.enlace;
}