From b6ce9410b15bc645fc191c147cfd14359da67b72 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Thu, 22 May 2014 03:30:11 +0200 Subject: added documentation for the configuration feature. --- website/features/experimental/Accessors.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'website/features/experimental/Accessors.html') diff --git a/website/features/experimental/Accessors.html b/website/features/experimental/Accessors.html index 79c3d272..20590a07 100644 --- a/website/features/experimental/Accessors.html +++ b/website/features/experimental/Accessors.html @@ -72,6 +72,19 @@
+
+

Supported configuration keys:

+
+
lombok.accessors.chain = [true | false] (default: false)
+
If set to true, any class that either doesn't have an @Accessors annotation, or it does, but that annotation does not have an explicit value for the chain parameter, will act as if @Accessors(chain = true) is present.
+
lombok.accessors.fluent = [true | false] (default: false)
+
If set to true, any class that either doesn't have an @Accessors annotation, or it does, but that annotation does not have an explicit value for the fluent parameter, will act as if @Accessors(fluent = true) is present.
+
lombok.accessors.prefix += a field prefix (default: empty list)
+
This is a list property; entries can be added with the += operator. Inherited prefixes from parent config files can be removed with the -= operator. Any class that either doesn't have an @Accessors annotation, or it does, but that annotation does not have an explicit value for the prefix parameter, will act as if @Accessors(prefix = {prefixes listed in configuration}) is present.
+
lombok.accessors.flagUsage = [warning | error] (default: not set)
+
Lombok will flag any usage of @Accessors as a warning or error if configured.
+
+

Small print

-- cgit