@Retention(value=RUNTIME)
@Target(value=METHOD)
@Documented
public @interface DecoratedBy
@DecoratedBy
is used to define the reference to the decorator on a decorated function.
Mainly used for internal stuff, this annotation can be useful to create decorated function in Java.Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
value
This is the reference to the decorator function.
|