From 4eb51a26b83df43ae4e2c94109e1b50d54148ab3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Wed, 20 Sep 2023 13:51:52 +0200 Subject: [PATCH] plugin_extensions.md: note about enum EP properties problem with custom toString() --- topics/basics/plugin_structure/plugin_extensions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/basics/plugin_structure/plugin_extensions.md b/topics/basics/plugin_structure/plugin_extensions.md index e99356bc8..c885d1961 100644 --- a/topics/basics/plugin_structure/plugin_extensions.md +++ b/topics/basics/plugin_structure/plugin_extensions.md @@ -133,4 +133,4 @@ Specifying `@org.jetbrains.annotations.Nls` validates a UI `String` capitalizati Properties marked as `@Deprecated` or annotated with any of [`ApiStatus`](https://github.com/JetBrains/java-annotations/blob/master/common/src/main/java/org/jetbrains/annotations/ApiStatus.java) `@Internal`, `@Experimental`, `@ScheduledForRemoval`, or `@Obsolete` will be highlighted accordingly. -Attributes with `Enum` type support code insight with _lowerCamelCased_ notation (2020.1 and later). +Attributes with `Enum` type support code insight with _lowerCamelCased_ notation (2020.1 and later). Note: these must not override `toString()`.