Modifier and Type | Required Element and Description |
---|---|
String |
className
The name of the class to extend.
|
Modifier and Type | Optional Element and Description |
---|---|
boolean |
isStatic
Declares whether the annotated method should remain
static or not. |
public abstract String className
public abstract boolean isStatic
static
or not.
When not set, or false
, the method will be injected in target class as an instance method (i.e. not
static) and its first argument will be removed and used as receiver.
true
if the extended method is static, false
otherwise