[spellchecker] @ApiStatus.Internal on new apis

GitOrigin-RevId: 27261e07be7ba614a355f339d326dcd384bb7bb0
This commit is contained in:
Denis Mukhametianov
2024-02-06 13:37:05 +01:00
committed by intellij-monorepo-bot
parent 2b54e307d2
commit 5ce9a661b3
3 changed files with 6 additions and 1 deletions

View File

@@ -9,9 +9,10 @@ import com.intellij.spellchecker.dictionary.ProjectDictionary
import com.intellij.spellchecker.state.AppDictionaryState
import com.intellij.spellchecker.state.ProjectDictionaryState
import com.intellij.spellchecker.util.SpellCheckerBundle
import org.jetbrains.annotations.ApiStatus
import org.jetbrains.annotations.Nls
import java.util.function.Supplier
@ApiStatus.Internal
interface DictionaryLayersProvider {
fun getLayers(project: Project): List<DictionaryLayer>

View File

@@ -2,7 +2,9 @@
package com.intellij.spellchecker.settings
import com.intellij.openapi.extensions.ExtensionPointName
import org.jetbrains.annotations.ApiStatus
@ApiStatus.Internal
interface BuiltInDictionariesProvider {
fun getDictionaries(): List<BuiltInDictionary>

View File

@@ -2,8 +2,10 @@
package com.intellij.spellchecker.settings
import com.intellij.openapi.project.Project
import org.jetbrains.annotations.ApiStatus
import org.jetbrains.annotations.Nls
@ApiStatus.Internal
interface BuiltInDictionary {
fun openDictionaryInEditor(project: Project)
val name: @Nls String