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: +
uLimit
into getULimit
(including lombok) and the other half turn prefer getuLimit
. @Accessors
may be involved in any update that addresses this request.boolean wasRunning
into boolean wasRunning()
instead of boolean isWasRunning()
, as well as more expansive prefix support. @Accessors
will be involved if this feature request is addressed.@Accessors
currently does not 'cascade' from field @Accessors
annotation to the class-level @Accessors
annotation, but it does 'cascade' to lombok.config
. Changing this is not difficult but backwards incompatible. It's not likely to break much existing code, but this needs to be decided on before the feature can move out of experimental status.
- 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.