// com.nivaria.ncm.component.abstractcomponentmanager.js, nivaria.com, 2007-05-01 cGuyomard
function AbstractComponentManager(localApplication){this._localApplication=localApplication;this._nComponents=[];this.toString=null;this.componentClass="AbstractComponent";this.registerComponent=function registerComponent(id,props){};this.initComponents=function initComponents(){for(var i=0;i<this._nComponents.length;i++){this._nComponents[i].init();}};}
