From a8864e84e6f6bcfc2f448144b4d39756cb79412c Mon Sep 17 00:00:00 2001 From: ivankrut856 <31008885+ivankrut856@users.noreply.github.com> Date: Mon, 6 Nov 2023 13:04:56 +0000 Subject: [PATCH] The second part of api affected by DBE-163 (#1145) --- reference_guide/api_changes_list_2023.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/reference_guide/api_changes_list_2023.md b/reference_guide/api_changes_list_2023.md index f6fa1a372..80d11dac4 100644 --- a/reference_guide/api_changes_list_2023.md +++ b/reference_guide/api_changes_list_2023.md @@ -243,6 +243,15 @@ Fragment builder functions from `ExternalSystemRunConfigurationUtil` file moved `com.intellij.database.datagrid.DataGrid.getName(ModelIndex)` method removed : Only recompilation is needed for classes that implement `DataGrid` and delegate calls to an actual `DataGrid` implementation. +`com.intellij.database.datagrid.DataGrid.setDisplayType(ModelIndex, DisplayType)` abstract method added +: Only recompilation is needed for classes that implement `DataGrid` and delegate calls to an actual `DataGrid` implementation. + +`com.intellij.database.datagrid.DataGrid.getDisplayType(ModelIndex)` abstract method added +: Only recompilation is needed for classes that implement `DataGrid` and delegate calls to an actual `DataGrid` implementation. + +`com.intellij.database.datagrid.DataGrid.getPureDisplayType(ModelIndex)` abstract method added +: Only recompilation is needed for classes that implement `DataGrid` and delegate calls to an actual `DataGrid` implementation. + `com.intellij.database.datagrid.DataGrid.setBinaryDisplayType(ModelIndex, BinaryDisplayType)` method removed : Use `com.intellij.database.datagrid.DataGrid.setDisplayType(ModelIndex, DisplayType)` instead.