Author: ygrego Date: 2015-04-20 10:10:47 +0000 (Mon, 20 Apr 2015) New Revision: 1230 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1230 Log: Implementation of class "NetworkCollection". Added: oipf/js/impl/model/NetworkInterfaceCollection.js Added: oipf/js/impl/model/NetworkInterfaceCollection.js =================================================================== --- oipf/js/impl/model/NetworkInterfaceCollection.js (rev 0) +++ oipf/js/impl/model/NetworkInterfaceCollection.js 2015-04-20 10:10:47 UTC (rev 1230) @@ -0,0 +1,11 @@ +/* + * The NetworkInterfaceCollection class represents a collection of + * NetworkInterface objects. See Annex K for the definition + * of the collection template. + */ + +var NetworkInterfaceCollection = Collection.extend({ + init: function() { + this.push.apply(this, arguments); + } +});