@Documented @Retention(value=RUNTIME) @Target(value=PARAMETER) public @interface SuperCall
super implementation. If a method does not have a super implementation, calling the annotated proxy will
throw an exception.
The proxy will both implement the
Callable and the Runnable interfaces
such that the annotated parameter must be assignable to any of those interfaces or be of the Object
type.| Modifier and Type | Optional Element and Description |
|---|---|
boolean |
fallbackToDefault
Determines if the injected proxy should invoke the default method to the intercepted method if a common
super method invocation is not applicable.
|
boolean |
serializableProxy
Determines if the generated proxy should be
Serializable. |
public abstract boolean serializableProxy
Serializable.true if the generated proxy should be Serializable.public abstract boolean fallbackToDefault
true if the invocation should fall back to invoking the default method.Copyright © 2014–2016. All rights reserved.