mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
547 B
Kotlin
15 lines
547 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.ui.jcef
|
|
|
|
import com.intellij.openapi.extensions.ExtensionPointName
|
|
|
|
interface JBCefAppRequiredArgumentsProvider {
|
|
companion object {
|
|
var EP: ExtensionPointName<JBCefAppRequiredArgumentsProvider> = ExtensionPointName("com.intellij.jcef.appRequiredArgumentsProvider")
|
|
|
|
@JvmStatic
|
|
fun getProviders(): List<JBCefAppRequiredArgumentsProvider> = EP.extensionList
|
|
}
|
|
|
|
val options: List<String>
|
|
} |