mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 15:06:56 +07:00
IJPL-797 intellij.platform.lang.core review internal API
GitOrigin-RevId: ae89a53cc7daee4a17a0b1c75cb0c0d52732c3ad
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f1a256e866
commit
7a0749026d
@@ -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[]
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user