Package io.appium.java_client.proxy
Interface HasMethodCallListeners
-
public interface HasMethodCallListeners
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MethodCallListener[]getMethodCallListeners()The getter is dynamically created by ByteBuddy to access method call listeners on the instrumented proxy instance.voidsetMethodCallListeners(MethodCallListener[] methodCallListeners)The setter is dynamically created by ByteBuddy to store method call listeners on the instrumented proxy instance.
-
-
-
Method Detail
-
setMethodCallListeners
void setMethodCallListeners(MethodCallListener[] methodCallListeners)
The setter is dynamically created by ByteBuddy to store method call listeners on the instrumented proxy instance.- Parameters:
methodCallListeners- Array of method call listeners assigned to the proxy instance.
-
getMethodCallListeners
MethodCallListener[] getMethodCallListeners()
The getter is dynamically created by ByteBuddy to access method call listeners on the instrumented proxy instance.- Returns:
- Array of method call listeners assigned the proxy instance.
-
-