IJPL-797 intellij.platform.lang.core review internal API

GitOrigin-RevId: ae89a53cc7daee4a17a0b1c75cb0c0d52732c3ad
This commit is contained in:
Daniil Ovchinnikov
2024-08-29 20:45:33 +02:00
committed by intellij-monorepo-bot
parent f1a256e866
commit 7a0749026d
2 changed files with 3 additions and 4 deletions

View File

@@ -427,9 +427,6 @@ c:com.intellij.openapi.actionSystem.LangDataKeys
- sf:TARGET_MODULE:com.intellij.openapi.actionSystem.DataKey
- sf:TARGET_PSI_ELEMENT:com.intellij.openapi.actionSystem.DataKey
- <init>():V
a:com.intellij.openapi.module.InternalModuleType
- com.intellij.openapi.module.ModuleType
- p:<init>(java.lang.String):V
com.intellij.openapi.module.ModuleConfigurationEditor
- com.intellij.openapi.options.Configurable
- sf:EMPTY:com.intellij.openapi.module.ModuleConfigurationEditor[]

View File

@@ -1,13 +1,15 @@
// Copyright 2000-2021 JetBrains s.r.o. and contributors. 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. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.openapi.module;
import com.intellij.ide.util.projectWizard.ModuleBuilder;
import org.jetbrains.annotations.ApiStatus.Internal;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
/**
* @author gregsh
*/
@Internal
public abstract class InternalModuleType<T extends ModuleBuilder> extends ModuleType<T> {
protected InternalModuleType(@NotNull @NonNls String id) {
super(id);