﻿function TRTEMenuPanel(id)
{
	//private
		var self = this;

	//public
		this.container = null;
		this.caption = null;
		this.visible = false;
		this.id = id;
		this.data = null;
		this.canModifyContent = true;
		this.button = null;
		this.onRefresh = null;

		this.determineFindValue = function() //implemented to be able to use TList.find()
		{
			return self.id;
		}
}
