Author: ygrego Date: 2015-05-26 09:22:57 +0000 (Tue, 26 May 2015) New Revision: 1472 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1472 Log: Addition of a new method "_setRecordingSchedulerObject". Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-05-26 09:21:05 UTC (rev 1471) +++ oipf/js/impl/OipfObjectFactory.js 2015-05-26 09:22:57 UTC (rev 1472) @@ -655,5 +655,12 @@ _setChannelConfig: function(channelListDocument) { var channelService = new ChannelService(null, channelListDocument); this.channelConfig = new ChannelConfig(channelService); + }, + + _setRecordingSchedulerObject: function(programmeListDocument) { + var programmeService = new ProgrammeService(programmeListDocument); + this.recordingSchedulerObject = + new RecordingSchedulerObject(this._modelFactory, programmeService); + } });