//================================= CLASS CONSTRUCTOR ========================================
//GlobalTutorIters
function GTIters()
{
//MEMBER VARIABLES
//The event mediator for events through this system ...
 this.eventMediator = null;

 this.initialize();
}

//====================================== STATIC ==============================================
//CONSTANTS
GTIters.OP_ENDITER = 0;

//====================================== MEMBERS =============================================
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GETTER/SETTER ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ METHODS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
GTIters.prototype.setDefaults = function()
{
 this.eventMediator = null;
}

GTIters.prototype.initialize = function()
{
 this.eventMediator = new EMTIters();
}

GTIters.prototype.getEventMediator = function()
{
 return this.eventMediator;
}

GTIters.prototype.finalize = function()
{
 this.setDefaults();
}
