//------------------------------ CLASE Validator (pseudo Abstract) ---------------------/

Validator = function ( nombre) {
	this.nombre = nombre;
	this.mensaje = '';
}


// Metodos clase Validator --------------------------------------

Validator.prototype.validate = function () {
	return true;
}

Validator.prototype.getNombre = function () {
	return this.nombre;
}

Validator.prototype.getMensaje = function () {
	return this.mensaje;
}





