Package com.intellij.concurrency

Examples of com.intellij.concurrency.AsyncFutureFactoryImpl


      Extensions.getRootArea().registerExtensionPoint("com.intellij.codeInsight.containerProvider",
                                                      "com.intellij.codeInsight.ContainerProvider");
      Extensions.getRootArea().getExtensionPoint("com.intellij.referencesSearch").registerExtension(new CachesBasedRefSearcher());
      registerApplicationService(project, PsiReferenceService.class, new PsiReferenceServiceImpl());
      registerApplicationService(project, JobLauncher.class, new JobLauncherImpl());
      registerApplicationService(project, AsyncFutureFactory.class, new AsyncFutureFactoryImpl());
      project.registerService(PsiSearchHelper.class, new PsiSearchHelperImpl(psiManager));
      project.registerService(DumbService.class, new DumbServiceImpl(project));
      project.registerService(ResolveCache.class, new ResolveCache(project.getMessageBus()));
      project.registerService(PsiFileFactory.class, new PsiFileFactoryImpl(psiManager));
      try {
View Full Code Here

TOP

Related Classes of com.intellij.concurrency.AsyncFutureFactoryImpl

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.