Ejemplo n.º 1
0
            public void DefaultConstructor()
            {
                // This may NOT throw any exceptions!!!
                IEngineProxy engineProxy = EngineComponentProxy.Instance;

                Assert.IsNotNull(engineProxy);
            }
Ejemplo n.º 2
0
        public IEngineProxy InitializeEngineComponent(IApplicationManager appManager)
        {
            IEngineProxy proxy = EngineComponentProxy.Instance;

            ((AbstractComponentProxy)proxy).InitializeComponentAccessPermissions(appManager);
            //((IComponentProxy)proxy).Start();
            return(proxy);
        }
 public void ChangeEngineProxy(IEngineProxy engineProxy)
 {
     EngineProxy = engineProxy;
 }