Files
openide/java/java-impl/src/com/intellij/execution/vmModules/VmModulesService.kt
Aleksey Dobrynin 1693569519 [java, highlighting] add standard "jigsaw" modules from the user's JDK for non-modular projects IDEA-259485
GitOrigin-RevId: c006ccb6680010eed93cf956befcfdcebaa7551b
2024-03-08 18:49:36 +00:00

14 lines
463 B
Kotlin

// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.execution.vmModules
import com.intellij.openapi.components.service
import java.util.concurrent.CompletableFuture
interface VmModulesService {
companion object {
@JvmStatic
fun getInstance(): VmModulesService = service()
}
fun getOrComputeModulesForJdk(javaHome: String): CompletableFuture<List<String>>
}