mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
14 lines
463 B
Kotlin
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>>
|
|
} |