mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
[json] mark EPs as PossiblyDumbAware
GitOrigin-RevId: 4685037f4121dc12078c4ae3986d0b67b13969db
This commit is contained in:
committed by
intellij-monorepo-bot
parent
084b4bb75a
commit
f99d35dcda
@@ -1,10 +1,11 @@
|
||||
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
// Copyright 2000-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
package com.jetbrains.jsonSchema.extension;
|
||||
|
||||
import com.intellij.openapi.application.ApplicationManager;
|
||||
import com.intellij.openapi.application.WriteAction;
|
||||
import com.intellij.openapi.diagnostic.Logger;
|
||||
import com.intellij.openapi.extensions.ExtensionPointName;
|
||||
import com.intellij.openapi.project.PossiblyDumbAware;
|
||||
import com.intellij.openapi.project.Project;
|
||||
import com.intellij.openapi.project.ProjectManager;
|
||||
import com.intellij.openapi.vfs.VfsUtil;
|
||||
@@ -22,7 +23,7 @@ import java.util.List;
|
||||
/**
|
||||
* Implement to contribute JSON Schemas for particular JSON documents to enable validation/completion based on JSON Schema.
|
||||
*/
|
||||
public interface JsonSchemaProviderFactory {
|
||||
public interface JsonSchemaProviderFactory extends PossiblyDumbAware {
|
||||
ExtensionPointName<JsonSchemaProviderFactory> EP_NAME = ExtensionPointName.create("JavaScript.JsonSchema.ProviderFactory");
|
||||
Logger LOG = Logger.getInstance(JsonSchemaProviderFactory.class);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user