/**
 * Extends EventDispatcher
 * Event names are defined by convention: propName+Change, e.g: for the <code>appState<code> property update the event name is <code>appStateChange<code>
 */
function ScheduleDay(){
}

ScheduleDay.prototype = new EventDispatcher();
ScheduleDay.prototype.constructor = ScheduleDay;

ScheduleDay.prototype.getShowList = function(){
	return this.showList;
}
ScheduleDay.prototype.setShowList = function(showList){
	this.showList = showList;
	this.dispatchEvent({type:"showListChange"});
}

ScheduleDay.prototype.getShowByIndex = function(index){
	return this.showList[index];
}
