Examples of unregisterAdapters()


Examples of org.eclipse.core.runtime.IAdapterManager.unregisterAdapters()

  @Override
  public void stop(BundleContext context) throws Exception {
    JavascriptVmFactory.getRootLogger().removeHandler(SDK_LOG_HANDLER);
    plugin = null;
    IAdapterManager manager = Platform.getAdapterManager();
    manager.unregisterAdapters(breakpointWorkbenchAdapterFactory);
    super.stop(context);
  }

  /**
   * @return the shared instance
View Full Code Here

Examples of org.eclipse.core.runtime.IAdapterManager.unregisterAdapters()

  @Override
  public void stop(BundleContext context) throws Exception {
    BrowserFactory.getRootLogger().removeHandler(SDK_LOG_HANDLER);
    plugin = null;
    IAdapterManager manager = Platform.getAdapterManager();
    manager.unregisterAdapters(breakpointWorkbenchAdapterFactory);
    super.stop(context);
  }

  /**
   * @return the shared instance
View Full Code Here

Examples of org.eclipse.core.runtime.IAdapterManager.unregisterAdapters()

  public void stop(BundleContext context) throws Exception {
    if (rscAdapterFactories != null) {
      IAdapterManager am = getAdapterManager(context);
      if (am != null) {
        for (IAdapterFactory af : rscAdapterFactories)
          am.unregisterAdapters(af);
      }
    }
  }

}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.