com.intellij.openapi.components.ServiceManager Java Examples

The following examples show how to use com.intellij.openapi.components.ServiceManager. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TFSRollbackEnvironmentTest.java    From azure-devops-intellij with MIT License 6 votes vote down vote up
@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
    PowerMockito.mockStatic(CommandUtils.class, LocalFileSystem.class, ServiceManager.class, TfsFileUtil.class);

    when(mockTFSVcs.getServerContext(anyBoolean())).thenReturn(mockServerContext);
    when(ServiceManager.getService(eq(mockProject), any())).thenReturn(new ClassicTfvcClient(mockProject));
    when(LocalFileSystem.getInstance()).thenReturn(mockLocalFileSystem);
    when(TfsFileUtil.createLocalPath(any(String.class))).thenCallRealMethod();
    when(TfsFileUtil.createLocalPath(any(FilePath.class))).thenCallRealMethod();
    when(TfsFileUtil.getPathItem(any(TfsPath.class))).thenCallRealMethod();
    when(filePath1.getPath()).thenReturn("/path/to/file1");
    when(filePath2.getPath()).thenReturn("/path/to/file2");
    when(filePath3.getPath()).thenReturn("/path/to/file3");
    exceptions = new ArrayList<>();

    rollbackEnvironment = new TFSRollbackEnvironment(mockTFSVcs, mockProject);
}
 
Example #2
Source File: ExecutionHelper.java    From consulo with Apache License 2.0 6 votes vote down vote up
private static void removeContents(@Nullable final Content notToRemove, @Nonnull final Project myProject, @Nonnull final String tabDisplayName) {
  MessageView messageView = ServiceManager.getService(myProject, MessageView.class);
  Content[] contents = messageView.getContentManager().getContents();
  for (Content content : contents) {
    LOG.assertTrue(content != null);
    if (content.isPinned()) continue;
    if (tabDisplayName.equals(content.getDisplayName()) && content != notToRemove) {
      ErrorTreeView listErrorView = (ErrorTreeView)content.getComponent();
      if (listErrorView != null) {
        if (messageView.getContentManager().removeContent(content, true)) {
          content.release();
        }
      }
    }
  }
}
 
Example #3
Source File: RefreshAllExternalProjectsAction.java    From consulo with Apache License 2.0 6 votes vote down vote up
@Override
public void update(AnActionEvent e) {
  final Project project = e.getDataContext().getData(CommonDataKeys.PROJECT);
  if (project == null) {
    e.getPresentation().setEnabled(false);
    return;
  }

  final List<ProjectSystemId> systemIds = getSystemIds(e);
  if (systemIds.isEmpty()) {
    e.getPresentation().setEnabled(false);
    return;
  }

  final String name = StringUtil.join(systemIds, new Function<ProjectSystemId, String>() {
    @Override
    public String fun(ProjectSystemId projectSystemId) {
      return projectSystemId.getReadableName();
    }
  }, ",");
  e.getPresentation().setText(ExternalSystemBundle.message("action.refresh.all.projects.text", name));
  e.getPresentation().setDescription(ExternalSystemBundle.message("action.refresh.all.projects.description", name));

  ExternalSystemProcessingManager processingManager = ServiceManager.getService(ExternalSystemProcessingManager.class);
  e.getPresentation().setEnabled(!processingManager.hasTaskOfTypeInProgress(ExternalSystemTaskType.RESOLVE_PROJECT, project));
}
 
Example #4
Source File: VcsRootIterator.java    From consulo with Apache License 2.0 6 votes vote down vote up
private MyRootIterator(final Project project,
                       final VirtualFile root,
                       @Nullable final Processor<FilePath> pathProcessor,
                       @javax.annotation.Nullable final Processor<VirtualFile> fileProcessor,
                       @Nullable VirtualFileFilter directoryFilter) {
  myProject = project;
  myPathProcessor = pathProcessor;
  myFileProcessor = fileProcessor;
  myDirectoryFilter = directoryFilter;
  myRoot = root;

  final ProjectLevelVcsManager plVcsManager = ProjectLevelVcsManager.getInstance(project);
  final AbstractVcs vcs = plVcsManager.getVcsFor(root);
  myRootPresentFilter = (vcs == null) ? null : new MyRootFilter(root, vcs.getName());
  if (myRootPresentFilter != null) {
    myRootPresentFilter.init(ProjectLevelVcsManager.getInstance(myProject).getAllVcsRoots());
  }
  myExcludedFileIndex = ServiceManager.getService(project, FileIndexFacade.class);
}
 
Example #5
Source File: ExternalSystemExecuteTaskTask.java    From consulo with Apache License 2.0 6 votes vote down vote up
@SuppressWarnings("unchecked")
@Override
protected void doExecute() throws Exception {
  final ExternalSystemFacadeManager manager = ServiceManager.getService(ExternalSystemFacadeManager.class);
  ExternalSystemExecutionSettings settings = ExternalSystemApiUtil.getExecutionSettings(getIdeProject(),
                                                                                        getExternalProjectPath(),
                                                                                        getExternalSystemId());
  RemoteExternalSystemFacade facade = manager.getFacade(getIdeProject(), getExternalProjectPath(), getExternalSystemId());
  RemoteExternalSystemTaskManager taskManager = facade.getTaskManager();
  List<String> taskNames = ContainerUtilRt.map2List(myTasksToExecute, MAPPER);

  final List<String> vmOptions = parseCmdParameters(myVmOptions);
  final List<String> scriptParametersList = parseCmdParameters(myScriptParameters);

  taskManager.executeTasks(getId(), taskNames, getExternalProjectPath(), settings, vmOptions, scriptParametersList, myDebuggerSetup);
}
 
Example #6
Source File: TodoCheckinHandler.java    From consulo with Apache License 2.0 6 votes vote down vote up
private void showTodo(TodoCheckinHandlerWorker worker) {
  String title = "For commit (" + DateFormatUtil.formatDateTime(System.currentTimeMillis()) + ")";
  ServiceManager.getService(myProject, TodoView.class).addCustomTodoView(new TodoTreeBuilderFactory() {
    @Override
    public TodoTreeBuilder createTreeBuilder(JTree tree, Project project) {
      return new CustomChangelistTodosTreeBuilder(tree, myProject, title, worker.inOneList());
    }
  }, title, new TodoPanelSettings(myConfiguration.myTodoPanelSettings));

  ApplicationManager.getApplication().invokeLater(() -> {
    ToolWindowManager manager = ToolWindowManager.getInstance(myProject);
    if (manager != null) {
      ToolWindow window = manager.getToolWindow("TODO");
      if (window != null) {
        window.show(() -> {
          ContentManager cm = window.getContentManager();
          Content[] contents = cm.getContents();
          if (contents.length > 0) {
            cm.setSelectedContent(contents[contents.length - 1], true);
          }
        });
      }
    }
  }, ModalityState.NON_MODAL, myProject.getDisposed());
}
 
Example #7
Source File: CamelProjectComponentTestIT.java    From camel-idea-plugin with Apache License 2.0 6 votes vote down vote up
public void testAddLegacyPackaging() throws IOException {
    CamelService service = ServiceManager.getService(myProject, CamelService.class);
    assertEquals(0, service.getLibraries().size());

    VirtualFile camelCoreVirtualFile = LocalFileSystem.getInstance().refreshAndFindFileByIoFile(createTestArchive("camel-core-2.22.0.jar"));
    VirtualFile legacyJarPackagingFile = LocalFileSystem.getInstance().refreshAndFindFileByIoFile(createTestArchive("legacy-custom-file-0.12.snapshot.jar"));

    final LibraryTable projectLibraryTable = LibraryTablesRegistrar.getInstance().getLibraryTable(myProject);

    addLibraryToModule(camelCoreVirtualFile, projectLibraryTable, "Maven: org.apache.camel:camel-core:2.22.0-snapshot");
    addLibraryToModule(legacyJarPackagingFile, projectLibraryTable, "c:\\test\\libs\\legacy-custom-file-0.12.snapshot.jar");

    UIUtil.dispatchAllInvocationEvents();
    assertEquals(1, service.getLibraries().size());
    assertEquals(true, service.getLibraries().contains("camel-core"));
}
 
Example #8
Source File: PhpStanValidatorConfigurationManager.java    From idea-php-generics-plugin with MIT License 5 votes vote down vote up
@NotNull
protected List<PhpStanValidatorConfiguration> getDefaultProjectSettings() {
    ProjectPhpStanValidatorConfigurationBaseManager service = ServiceManager.getService(
        ProjectManager.getInstance().getDefaultProject(),
        ProjectPhpStanValidatorConfigurationBaseManager.class
    );

    return service.getSettings();
}
 
Example #9
Source File: BaseCompletionProvider.java    From jetbrains-plugin-graph-database-support with Apache License 2.0 5 votes vote down vote up
protected void withCypherMetadataProvider(CompletionParameters parameters, ProjectRunnable runnable) {
    Project project = parameters.getEditor().getProject();
    if (project != null) {
        CypherMetadataProviderService provider = ServiceManager.getService(project, CypherMetadataProviderService.class);
        runnable.run(provider);
    }
}
 
Example #10
Source File: LoginDialog.java    From tmc-intellij with MIT License 5 votes vote down vote up
private void onOK() {
    final PersistentTmcSettings saveSettings =
            ServiceManager.getService(PersistentTmcSettings.class);

    settingsTmc.setUsername(usernameField.getText());

    saveSettings.setSettingsTmc(settingsTmc);

    LoginManager loginManager = new LoginManager();

    if (loginManager.login(passwordField.getText())) {
        dispose();
        addressNormalizer = getAddressNormalizer();
        addressNormalizer.selectOrganizationAndCourse();
        try {
            if (!settingsTmc.getOrganization().isPresent()) {
                OrganizationListWindow.display();
            } else if (!settingsTmc.getCurrentCourse().isPresent()
                    || (previousOrganization != settingsTmc.getOrganization().get()
                && previousCourse == settingsTmc.getCurrentCourse().get())) {
                // Show courselistwindow if current course isn't selected OR if user's
                // organization has
                // changed and current course hasn't.
                // Because then the current course probably isn't the right organization's
                // course.
                CourseListWindow.display();
            } else {
                ProjectListManagerHolder.get().refreshAllCourses();
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
 
Example #11
Source File: LithoTemplateActionTest.java    From litho with Apache License 2.0 5 votes vote down vote up
@Test
public void postProcess_generateCreatedLayoutSpec() throws IOException {
  final PsiFile specCls = testHelper.configure("LayoutSpec.java");
  ApplicationManager.getApplication()
      .invokeAndWait(
          () -> {
            new TestTemplateAction().postProcess(specCls, "Any", Collections.emptyMap());
            final PsiClass generatedForSpecCls =
                ServiceManager.getService(
                        testHelper.getFixture().getProject(), ComponentsCacheService.class)
                    .getComponent("Layout");
            assertThat(generatedForSpecCls).isNotNull();
          });
}
 
Example #12
Source File: RTFileListener.java    From react-templates-plugin with MIT License 5 votes vote down vote up
public static void stop(@NotNull Project project) {
    RTFileListener listener = ServiceManager.getService(project, RTFileListener.class);
    if (listener == null) {
        LOG.warn("failed to stop RTFileListener");
    } else {
        listener.stopListener();
    }
}
 
Example #13
Source File: HaskellBuildSettings.java    From intellij-haskforce with Apache License 2.0 5 votes vote down vote up
@NotNull
public static HaskellBuildSettings getInstance(@NotNull Project project) {
    HaskellBuildSettings settings = ServiceManager.getService(project, HaskellBuildSettings.class);
    if (settings == null) settings = new HaskellBuildSettings();
    settings.updatePaths();
    return settings;
}
 
Example #14
Source File: MultiValueAutoComplete.java    From review-board-idea-plugin with Apache License 2.0 5 votes vote down vote up
public static EditorTextField create(Project project, DataProvider dataProvider) {
    List<EditorCustomization> customizations =
            Arrays.<EditorCustomization>asList(SoftWrapsEditorCustomization.ENABLED, SpellCheckingEditorCustomization.DISABLED);
    EditorTextField editorField = ServiceManager.getService(project, EditorTextFieldProvider.class)
            .getEditorField(FileTypes.PLAIN_TEXT.getLanguage(), project, customizations);
    new CommaSeparatedTextFieldCompletion(dataProvider).apply(editorField);
    return editorField;

}
 
Example #15
Source File: VcsRootIterator.java    From consulo with Apache License 2.0 5 votes vote down vote up
public VcsRootIterator(final Project project, final AbstractVcs vcs) {
  final ProjectLevelVcsManager plVcsManager = ProjectLevelVcsManager.getInstance(project);
  myOtherVcsFolders = new HashMap<String, MyRootFilter>();
  myExcludedFileIndex = ServiceManager.getService(project, FileIndexFacade.class);

  final VcsRoot[] allRoots = plVcsManager.getAllVcsRoots();
  final VirtualFile[] roots = plVcsManager.getRootsUnderVcs(vcs);
  for (VirtualFile root : roots) {
    final MyRootFilter rootPresentFilter = new MyRootFilter(root, vcs.getName());
    rootPresentFilter.init(allRoots);
    myOtherVcsFolders.put(root.getUrl(), rootPresentFilter);
  }
}
 
Example #16
Source File: JavaPropertyPlaceholdersSmartCompletionTestIT.java    From camel-idea-plugin with Apache License 2.0 5 votes vote down vote up
public void testWithExcludeFile() {
    ServiceManager.getService(CamelPreferenceService.class).setExcludePropertyFiles(Collections.singletonList("**/CompleteExclude*"));
    myFixture.configureByFiles("CompleteYmlPropertyTestData.java", "CompleteJavaPropertyTestData.properties", "CompleteExcludePropertyTestData.properties");
    myFixture.complete(CompletionType.BASIC, 1);
    List<String> strings = myFixture.getLookupElementStrings();
    assertTrue(strings.containsAll(Arrays.asList("ftp.client}}", "ftp.server}}")));
    assertEquals(2, strings.size());
}
 
Example #17
Source File: CamelAddEndpointIntention.java    From camel-idea-plugin with Apache License 2.0 5 votes vote down vote up
@Override
public void invoke(@NotNull Project project, Editor editor, @NotNull PsiElement element) throws IncorrectOperationException {
     // filter libraries to only be Camel libraries
    Set<String> artifacts = ServiceManager.getService(project, CamelService.class).getLibraries();

    // find the camel component from those libraries
    boolean consumerOnly = getCamelIdeaUtils().isConsumerEndpoint(element);
    List<String> names = findCamelComponentNamesInArtifact(artifacts, consumerOnly, project);

    // no camel endpoints then exit
    if (names.isEmpty()) {
        return;
    }

    // show popup to chose the component
    JBList list = new JBList(names.toArray(new Object[names.size()]));
    PopupChooserBuilder builder = JBPopupFactory.getInstance().createListPopupBuilder(list);
    builder.setAdText(names.size() + " components");
    builder.setTitle("Add Camel Endpoint");
    builder.setItemChoosenCallback(() -> {
        String line = (String) list.getSelectedValue();
        int pos = editor.getCaretModel().getCurrentCaret().getOffset();
        if (pos > 0) {
            // must run this as write action because we change the source code
            new WriteCommandAction(project, element.getContainingFile()) {
                @Override
                protected void run(@NotNull Result result) throws Throwable {
                    String text = line + ":";
                    editor.getDocument().insertString(pos, text);
                    editor.getCaretModel().moveToOffset(pos + text.length());
                }
            }.execute();
        }
    });

    JBPopup popup = builder.createPopup();
    popup.showInBestPositionFor(editor);
}
 
Example #18
Source File: InsightManagerImpl.java    From reasonml-idea-plugin with MIT License 5 votes vote down vote up
@Nullable
public String getRincewindFilenameExcludingVersion(@NotNull VirtualFile sourceFile, @NotNull String excludedVersion) {
    String ocamlVersion = ServiceManager.getService(m_project, BsProcess.class).getOCamlVersion(sourceFile);
    String rincewindVersion = getRincewindVersion(ocamlVersion);

    if (ocamlVersion != null && !rincewindVersion.equals(excludedVersion)) {
        return "rincewind_" + getOsPrefix() + ocamlVersion + "-" + rincewindVersion + ".exe";
    }

    return null;
}
 
Example #19
Source File: XmlCamelRouteLineMarkerProviderTestIT.java    From camel-idea-plugin with Apache License 2.0 5 votes vote down vote up
public void testCamelGutter() {
    myFixture.configureByFiles("XmlCamelRouteLineMarkerProviderTestData.xml");
    List<GutterMark> gutters = myFixture.findAllGutters();
    assertNotNull(gutters);

    assertEquals("Does not contain the expected amount of Camel gutters", 3, gutters.size());

    Icon defaultIcon = ServiceManager.getService(CamelPreferenceService.class).getCamelIcon();
    gutters.forEach(gutterMark -> {
        assertSame("Gutter should have the Camel icon", defaultIcon, gutterMark.getIcon());
        assertEquals("Camel route", gutterMark.getTooltipText());
    });

    LineMarkerInfo.LineMarkerGutterIconRenderer firstGutter = (LineMarkerInfo.LineMarkerGutterIconRenderer) gutters.get(1);

    assertTrue(firstGutter.getLineMarkerInfo().getElement() instanceof XmlToken);
    assertEquals("The navigation start element doesn't match", "file:inbox",
            PsiTreeUtil.getParentOfType(firstGutter.getLineMarkerInfo().getElement(), XmlTag.class).getAttribute("uri").getValue());

    List<GotoRelatedItem> firstGutterTargets = GutterTestUtil.getGutterNavigationDestinationElements(firstGutter);
    assertEquals("Navigation should have one target", 1, firstGutterTargets.size());
    assertEquals("The navigation target route doesn't match", "file:inbox", firstGutterTargets.get(0).getElement().getText());
    assertEquals("The navigation target tag name doesn't match", "to",
            GutterTestUtil.getGuttersWithXMLTarget(firstGutterTargets).get(0).getLocalName());

    LineMarkerInfo.LineMarkerGutterIconRenderer secondGutter = (LineMarkerInfo.LineMarkerGutterIconRenderer) gutters.get(2);

    assertTrue(secondGutter.getLineMarkerInfo().getElement() instanceof XmlToken);
    assertEquals("The navigation start element doesn't match", "file:outbox",
            PsiTreeUtil.getParentOfType(secondGutter.getLineMarkerInfo().getElement(), XmlTag.class).getAttribute("uri").getValue());

    List<GotoRelatedItem> secondGutterTargets = GutterTestUtil.getGutterNavigationDestinationElements(secondGutter);
    assertEquals("Navigation should have one target", 1, secondGutterTargets.size());
    assertEquals("The navigation target route doesn't match", "file:outbox", secondGutterTargets.get(0).getElement().getText());
    assertEquals("The navigation target tag name doesn't match", "to",
            GutterTestUtil.getGuttersWithXMLTarget(secondGutterTargets).get(0).getLocalName());
}
 
Example #20
Source File: PsalmValidatorConfigurationManager.java    From idea-php-generics-plugin with MIT License 5 votes vote down vote up
public PsalmValidatorConfigurationManager(@Nullable Project project) {
    super(project);
    if (project != null) {
        this.myProjectManager = ServiceManager.getService(project, ProjectPsalmValidatorConfigurationBaseManager.class);
    }

    this.myApplicationManager = ServiceManager.getService(AppPsalmValidatorConfigurationBaseManager.class);
}
 
Example #21
Source File: TFSFileSystemListenerTest.java    From azure-devops-intellij with MIT License 5 votes vote down vote up
@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
    PowerMockito.mockStatic(
            CommandUtils.class,
            LocalFileSystem.class,
            ServiceManager.class,
            TFSVcs.class,
            TFVCUtil.class,
            VcsHelper.class,
            VersionControlPath.class
    );

    when(ServiceManager.getService(eq(mockProject), any())).thenReturn(new ClassicTfvcClient(mockProject));
    when(mockTFSVcs.getProject()).thenReturn(mockProject);
    when(mockVcsShowConfirmationOption.getValue()).thenReturn(VcsShowConfirmationOption.Value.DO_ACTION_SILENTLY);
    when(mockTFSVcs.getDeleteConfirmation()).thenReturn(mockVcsShowConfirmationOption);
    when(VcsHelper.getTFSVcsByPath(mockVirtualFile)).thenReturn(mockTFSVcs);
    when(LocalFileSystem.getInstance()).thenReturn(mockLocalFileSystem);
    when(mockVirtualFile.getPath()).thenReturn(CURRENT_FILE_PATH);
    when(mockVirtualFile.getName()).thenReturn(CURRENT_FILE_NAME);
    when(mockVirtualParent.getPath()).thenReturn(PARENT_PATH);
    when(mockVirtualFile.getParent()).thenReturn(mockVirtualParent);
    when(mockNewDirectory.getPath()).thenReturn(NEW_DIRECTORY_PATH);
    when(mockTFSVcs.getServerContext(anyBoolean())).thenReturn(mockServerContext);
    when(TFSVcs.getInstance(mockProject)).thenReturn(mockTFSVcs);
    when(TFVCUtil.isInvalidTFVCPath(eq(mockTFSVcs), any(FilePath.class))).thenReturn(false);
    when(
            CommandUtils.deleteFiles(
                    any(ServerContext.class), anyListOf(String.class), any(String.class), any(Boolean.class)))
            .thenReturn(new TfvcDeleteResult());

    FilePath mockFilePath = mock(FilePath.class);
    when(VersionControlPath.getFilePath(CURRENT_FILE_PATH, false)).thenReturn(mockFilePath);
    when(mockPendingChange.getLocalItem()).thenReturn(CURRENT_FILE_PATH);
    when(mockPendingChange.getVersion()).thenReturn("5");

    tfsFileSystemListener = new TFSFileSystemListener(mockProject);
}
 
Example #22
Source File: PropertiesCompletionProvider.java    From component-runtime with Apache License 2.0 5 votes vote down vote up
@Override
protected void addCompletions(final CompletionParameters completionParameters,
        final ProcessingContext processingContext, final CompletionResultSet resultSet) {

    final PsiElement element = completionParameters.getPosition();
    if (!LeafPsiElement.class.isInstance(element)) {
        return; // ignore comment
    }

    final Project project = element.getProject();
    final Module module = findModule(element);
    final SuggestionService service = ServiceManager.getService(project, SuggestionService.class);
    if ((module == null || !service.isSupported(completionParameters))) { // limit suggestion to Messages
        return;
    }

    if (PropertyValueImpl.class.isInstance(element)) {
        ofNullable(PropertyValueImpl.class.cast(element).getPrevSibling())
                .map(PsiElement::getPrevSibling)
                .map(PsiElement::getText)
                .ifPresent(text -> resultSet.addAllElements(service.computeValueSuggestions(text)));
    } else if (PropertyKeyImpl.class.isInstance(element)) {
        final List<String> containerElements = PropertiesFileImpl.class
                .cast(element.getContainingFile())
                .getProperties()
                .stream()
                .filter(p -> !Objects.equals(p.getKey(), element.getText()))
                .map(IProperty::getKey)
                .collect(toList());
        resultSet
                .addAllElements(service
                        .computeKeySuggestions(project, module, getPropertiesPackage(module, completionParameters),
                                containerElements, truncateIdeaDummyIdentifier(element)));
    }
}
 
Example #23
Source File: PsiPackageManager.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nonnull
public static PsiPackageManager getInstance(@Nonnull Project project) {
  return ServiceManager.getService(project, PsiPackageManager.class);
}
 
Example #24
Source File: PathReferenceManager.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nonnull
public static PathReferenceManager getInstance(){
  return ServiceManager.getService(PathReferenceManager.class);
}
 
Example #25
Source File: DuneOutputListener.java    From reasonml-idea-plugin with MIT License 4 votes vote down vote up
@Override
public void startNotified(@NotNull ProcessEvent event) {
    m_bsbInfo.clear();
    ServiceManager.getService(m_project, ErrorsManager.class).clearErrors();
}
 
Example #26
Source File: MacMessages.java    From consulo with Apache License 2.0 4 votes vote down vote up
public static MacMessages getInstance() {
  return Registry.is("ide.mac.message.sheets.java.emulation.dialogs") ? ServiceManager.getService(MacMessagesEmulation.class) : ServiceManager.getService(MacMessages.class);
}
 
Example #27
Source File: MavenReIndexingDependencyChangeSubscriber.java    From intellij-spring-assistant with MIT License 4 votes vote down vote up
static MavenReIndexingDependencyChangeSubscriber getInstance(Project project) {
  return ServiceManager.getService(project, MavenReIndexingDependencyChangeSubscriber.class);
}
 
Example #28
Source File: ChooseByRouteRegistry.java    From railways with MIT License 4 votes vote down vote up
public static ChooseByRouteRegistry getInstance(Project project) {
    return ServiceManager.getService(project, ChooseByRouteRegistry.class);
}
 
Example #29
Source File: SystemDock.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nonnull
public static SystemDock getInstance() {
  return ServiceManager.getService(SystemDock.class);
}
 
Example #30
Source File: ScratchFileService.java    From consulo with Apache License 2.0 4 votes vote down vote up
public static ScratchFileService getInstance() {
  return ServiceManager.getService(ScratchFileService.class);
}