Author: ygrego Date: 2015-03-03 14:08:42 +0000 (Tue, 03 Mar 2015) New Revision: 906 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/906 Log: New class permitting to have a collection of "AVOutput" object (here that will be represented by a array). Added: oipf/js/impl/model/AVOutputCollection.js Added: oipf/js/impl/model/AVOutputCollection.js =================================================================== --- oipf/js/impl/model/AVOutputCollection.js (rev 0) +++ oipf/js/impl/model/AVOutputCollection.js 2015-03-03 14:08:42 UTC (rev 906) @@ -0,0 +1,14 @@ +/* + * typedef Collection<AVOutput> AVOutputCollection + * + * The AVOutputCollection class represents a collection of AVOutput objects. See Annex K for the definition of the + * collection template. + * + */ + +var AVOutputCollection = Array.extend({ + + init: function() { + this.push.apply(this, arguments); + } +});
participants (1)
-
ygregoï¼ users.nuiton.org