﻿Type.registerNamespace("WhiteDove.UI");

WhiteDove.UI._Forecourt = function()
{
	WhiteDove.UI._Forecourt.initializeBase(this);
};

WhiteDove.UI._Forecourt.prototype =
{
	add_updated: function(handler)
	{
		this.get_events().addHandler("updated", handler);
	},
	remove_updated: function(handler)
	{
		this.get_events().removeHandler("updated", handler);
	},
	
	onUpdated: function()
	{
		var handler = this.get_events().getHandler("updated");
		if (handler) { handler(this, Sys.EventArgs.Empty); }
	}
};

WhiteDove.UI._Forecourt.registerClass("WhiteDove.UI._Forecourt", Sys.Component);

WhiteDove.UI.Forecourt = new WhiteDove.UI._Forecourt();
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();