/************************************************************************
 * 		Basisklasse für Inhaltstabs wie unter dem Editor				*
 * 		C 2008 by René Lange & Thomas Müller & Steve Rohrlack @ mindbox	*
 ************************************************************************/

var AbstractTabContent = new Class({
	container : '',
	title : '',
	
	// EventHandler
	sendMessage : function (target, todo) {
		if (this.title == target) {
			this.handleEvent(todo);
		}
	},

	// Nachrichten verarbeiten
	handleEvent : function (todo) {
	},

	// Inhalt erstellen
	build : function(){
	},
	
	// Aktualisieren
	update : function() {		
	}
});