Author: ygrego Date: 2015-02-24 15:57:27 +0000 (Tue, 24 Feb 2015) New Revision: 868 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/868 Log: Addition of class "FavouriteList" to manage lists of favourites channels. Added: oipf/js/impl/model/FavouriteList.js Added: oipf/js/impl/model/FavouriteList.js =================================================================== --- oipf/js/impl/model/FavouriteList.js (rev 0) +++ oipf/js/impl/model/FavouriteList.js 2015-02-24 15:57:27 UTC (rev 868) @@ -0,0 +1,15 @@ +/* + * The FavouriteList class represents a list of favourite channels. See Annex K for the definition of the collection + * template. In addition to the methods and properties defined for generic collections, the FavouriteList class supports + * the additional properties and methods defined below. + * In order to preserve backwards compatibility with already existing DAE content the JavaScript toString() method + * SHALL return the FavouriteList.id for FavouriteList objects. + */ +var FavouriteList = Collection.extend({ + + init: function(elements) { + this.super.init(elements); + } +}); + +