Author: ygrego Date: 2015-05-26 08:46:42 +0000 (Tue, 26 May 2015) New Revision: 1464 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1464 Log: Addition of method "_setChannelConfig". Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-05-26 08:39:54 UTC (rev 1463) +++ oipf/js/impl/OipfObjectFactory.js 2015-05-26 08:46:42 UTC (rev 1464) @@ -649,5 +649,10 @@ } else { throw new TypeError("This object type is not supported."); } + }, + + _setChannelConfig: function(channelListDocument) { + var channelService = new channelService(channelListDocument); + this.channelConfig = new ChannelConfig(channelService); } });