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 SummaryOptional Elements
- 
Element Details- 
valueString valueAn identifier used to disambiguate targets when there are multiple@DelegatesTo.Targetannotated parameters.- Default:
- ""
 
 
-