Interface ProxyMethod
-
public interface ProxyMethod
Marks a method to be proxied a simple annotation- Author:
- pchretien
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<? extends Annotation>
getAnnotationType()
Object
invoke(Method method, Object[] args)
Executes the methods with args as a function
-
-
-
Method Detail
-
invoke
Object invoke(Method method, Object[] args)
Executes the methods with args as a function- Parameters:
method
- the methodargs
- the args- Returns:
- the result
-
getAnnotationType
Class<? extends Annotation> getAnnotationType()
- Returns:
- the annotation that must be used to mark the methods
-
-