//================================= CLASS CONSTRUCTOR ========================================
function GNotifMsg()
{
//VARIABLES
//The event mediator ...
 this.eventMediator = null;

//Initializing ...
 this.initialize();
}

//====================================== STATIC ==============================================

//====================================== MEMBERS =============================================
GNotifMsg.prototype.setDefaults = function()
{
 this.eventMediator = null;
}

GNotifMsg.prototype.initialize = function()
{
 this.setDefaults();
 this.eventMediator = new EventMediatorNMsg();
}

GNotifMsg.prototype.getEventMediator = function()
{
 return this.eventMediator;
}

GNotifMsg.prototype.finalize = function()
{
 this.setDefaults();
}
