From 071d45b386d92272dcbaf23a4873ab746c1c8500 Mon Sep 17 00:00:00 2001 From: Ilya Muradyan Date: Mon, 13 May 2024 16:26:21 +0200 Subject: [PATCH] KTNB-235, PY-64586: Fix runtime configuration and mark classes in intellij.notebooks.tables as internal GitOrigin-RevId: 3fc10921590edf4d9a8c2b9255634d3e78b35841 --- notebooks/tables/intellij.notebooks.tables.iml | 1 + .../src/com/intellij/notebooks/tables/CommandOutputType.kt | 3 +++ .../com/intellij/notebooks/tables/TableCommandParameters.kt | 3 +++ .../src/com/intellij/notebooks/tables/TableCommandType.kt | 3 +++ 4 files changed, 10 insertions(+) diff --git a/notebooks/tables/intellij.notebooks.tables.iml b/notebooks/tables/intellij.notebooks.tables.iml index 40c7649cf931..21008657627b 100644 --- a/notebooks/tables/intellij.notebooks.tables.iml +++ b/notebooks/tables/intellij.notebooks.tables.iml @@ -9,5 +9,6 @@ + \ No newline at end of file diff --git a/notebooks/tables/src/com/intellij/notebooks/tables/CommandOutputType.kt b/notebooks/tables/src/com/intellij/notebooks/tables/CommandOutputType.kt index 7811730d64ad..888f0480e143 100644 --- a/notebooks/tables/src/com/intellij/notebooks/tables/CommandOutputType.kt +++ b/notebooks/tables/src/com/intellij/notebooks/tables/CommandOutputType.kt @@ -1,5 +1,8 @@ package com.intellij.notebooks.tables +import com.intellij.openapi.util.IntellijInternalApi + +@IntellijInternalApi enum class CommandOutputType { STREAM, DISPLAY } diff --git a/notebooks/tables/src/com/intellij/notebooks/tables/TableCommandParameters.kt b/notebooks/tables/src/com/intellij/notebooks/tables/TableCommandParameters.kt index 640e44032c7c..51eb359f4f9b 100644 --- a/notebooks/tables/src/com/intellij/notebooks/tables/TableCommandParameters.kt +++ b/notebooks/tables/src/com/intellij/notebooks/tables/TableCommandParameters.kt @@ -1,3 +1,6 @@ package com.intellij.notebooks.tables +import com.intellij.openapi.util.IntellijInternalApi + +@IntellijInternalApi interface TableCommandParameters diff --git a/notebooks/tables/src/com/intellij/notebooks/tables/TableCommandType.kt b/notebooks/tables/src/com/intellij/notebooks/tables/TableCommandType.kt index 513313d820f0..e1c6e5eaa5cb 100644 --- a/notebooks/tables/src/com/intellij/notebooks/tables/TableCommandType.kt +++ b/notebooks/tables/src/com/intellij/notebooks/tables/TableCommandType.kt @@ -1,5 +1,8 @@ package com.intellij.notebooks.tables +import com.intellij.openapi.util.IntellijInternalApi + +@IntellijInternalApi enum class TableCommandType { DF_INFO, SLICE, DF_DESCRIBE }