//= require <mootools-core-1.3-full-nocompat>
//= require <uiframework/Panel>
var EditListingView = function()
{
	this.Extends = Panel;

	/**
	 * @ignore
	 */
	this.initialize = function(element, properties)
	{
		this.parent(element, properties);
	};

	/**
	 * @ignore
	 */
	this.createChildren = function()
	{
		this.parent();
	};

	this.updateDisplayList = function(width, height)
	{
		this.parent();
	};
};
EditListingView = new Class(new EditListingView());
