From 831e277d0084ee0c37881344e826e0ba3f54c5af Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Sun, 3 Jan 2021 15:06:08 +0100 Subject: [PATCH] [website] Clarified @Accessors documentation and added links to issue #2464 and issue #2693 --- website/templates/features/experimental/Accessors.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/website/templates/features/experimental/Accessors.html b/website/templates/features/experimental/Accessors.html index 97017dc634..54d507f884 100644 --- a/website/templates/features/experimental/Accessors.html +++ b/website/templates/features/experimental/Accessors.html @@ -15,7 +15,12 @@ New feature – community feedback requested. - Current status: positive - Currently we feel this feature may move out of experimental status with no or minor changes soon. + Current status: neutral - Some changes are expected. These changes are intended to be backwards compatible, but should start in an experimental feature: + <@f.overview> @@ -39,7 +44,7 @@

- The @Accessors annotation is legal on types and fields; the annotation that applies is the one on the field if present, otherwise the one on the class. When a @Accessors annotation on a field is present, any @Accessors annotation also present on that field's type is ignored. + The @Accessors annotation is legal on types and fields; the annotation that applies is the one on the field if present, otherwise the one on the class. When a @Accessors annotation on a field is present, any @Accessors annotation also present on the class the field is in, is entirely ignored, even for properties not configured on the field @Accessors. This in contrast to any lombok.config configuration keys which serve as fall-back default if any explicit @Accessors annotation doesn't specify.