[spellchecker] doc for SpellCheckerQuickFixFactory and BuiltInDictionariesProvider

GitOrigin-RevId: e8bf1eb390177ce8f5461aa93f1867c13da5c927
This commit is contained in:
Denis Mukhametianov
2024-05-14 11:20:35 +02:00
committed by intellij-monorepo-bot
parent c400f3c23f
commit ba4241e602
2 changed files with 7 additions and 0 deletions

View File

@@ -8,6 +8,9 @@ import com.intellij.psi.PsiElement
import com.intellij.spellchecker.DictionaryLayer
import org.jetbrains.annotations.ApiStatus.Internal
/**
* Extension point for product-wide spellchecking inspection quickfixes customization.
*/
@Internal
interface SpellCheckerQuickFixFactory {
companion object {

View File

@@ -4,6 +4,10 @@ package com.intellij.spellchecker.settings
import com.intellij.openapi.extensions.ExtensionPointName
import org.jetbrains.annotations.ApiStatus
/**
* Extension point for providing built-in spellchecking dictionaries
* that should be displayed and can be edited in `Custom dictionaries` table in spellchecker options page.
*/
@ApiStatus.Internal
interface BuiltInDictionariesProvider {
fun getDictionaries(): List<BuiltInDictionary>