Package io.appium.java_client.proxy
Interface HasMethodCallListeners
public interface HasMethodCallListeners
-
Method Summary
Modifier and TypeMethodDescriptionThe 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 Details
-
setMethodCallListeners
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.
-