Package org.eclipse.ecf.core.util

Examples of org.eclipse.ecf.core.util.ExtensionRegistryRunnable


   * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
   */
  public void start(BundleContext context) throws Exception {
    this.context = context;
    plugin = this;
    SafeRunner.run(new ExtensionRegistryRunnable(this.context) {
      protected void runWithoutRegistry() throws Exception {
        // If we don't have a registry, then register trivial namespace
        Activator.this.context.registerService(Namespace.class,
            new TrivialNamespace(TrivialNamespace.NAME), null);
        // And create and register ContainerTypeDescription
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.core.util.ExtensionRegistryRunnable

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.