Package org.aperteworkflow.ui.view.impl

Examples of org.aperteworkflow.ui.view.impl.DefaultViewRegistryImpl


        if (registry != null) {
          registry.setOsgiBundleContext(context);
          serviceBridge = new FelixServiceBridge(felix);
          registry.addServiceLoader(serviceBridge);
          context.registerService(ProcessToolRegistry.class.getName(), registry, new Hashtable());
          context.registerService(ViewRegistry.class.getName(), new DefaultViewRegistryImpl(),
              new Hashtable<String, Object>());
        }
      }

      @Override
View Full Code Here


        registry.removeServiceLoader(serviceBridge);
      }

      private void registerDefaultServices(BundleContext context) {
        context.registerService(ProcessToolRegistry.class.getName(), registry, new Hashtable<String, Object>());
        context.registerService(ViewRegistry.class.getName(), new DefaultViewRegistryImpl(), new Hashtable<String, Object>());
      }
    });

    configMap.put(FelixConstants.SYSTEMBUNDLE_ACTIVATORS_PROP, activators);
  }
View Full Code Here

TOP

Related Classes of org.aperteworkflow.ui.view.impl.DefaultViewRegistryImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.