Package groovy.lang
Annotation Type DelegatesTo.Target
- Enclosing class:
 - DelegatesTo
 
Specifies the delegate for a 
@DelegatesTo annotated parameter of the same method.
 Example:
 // Declare that the delegate of the closure will be the "spec" argument
 ExecResult exec(@DelegatesTo.Target ExecSpec spec, @DelegatesTo Closure closure) { ... }
 - 
Optional Element Summary
Optional Elements 
- 
Element Details
- 
value
String valueAn identifier used to disambiguate targets when there are multiple@DelegatesTo.Targetannotated parameters.- Default:
 - ""
 
 
 -