aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/lombok/Builder.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/lombok/Builder.java b/src/core/lombok/Builder.java
index 6a92028c..7a965486 100644
--- a/src/core/lombok/Builder.java
+++ b/src/core/lombok/Builder.java
@@ -139,6 +139,8 @@ public @interface Builder {
* <p>
* The default behaviour is to obtain a value by referencing the name of the parameter as a field on 'this'.
*/
+ @Target({FIELD, PARAMETER})
+ @Retention(SOURCE)
public @interface ObtainVia {
/** Tells lombok to obtain a value with the expression {@code this.value}. */
String field() default "";