public abstract static class MethodBridge.BridgeParams
extends java.lang.Object
MethodBridge.bridgeBegin(BridgeParams)
and MethodBridge.bridgeEnd(BridgeParams)
Modifier and Type | Field and Description |
---|---|
java.lang.Object[] |
args
Arguments that was parsed to the original
Member |
MethodBridge.BridgeType |
bridgeType
The type of system used to invoke the hook, like Xposed Bridge or Cydia Substrate
|
java.lang.reflect.Member |
method
The original
Member being invoked |
java.lang.Object |
receiver
The instance of the class being invoked or
NULL if it is a static call |
Constructor and Description |
---|
MethodBridge.BridgeParams() |
Modifier and Type | Method and Description |
---|---|
abstract java.lang.Object |
getResult()
Return the current result that is to be parsed back to the caller of the original
Member |
abstract java.lang.Object |
invokeOriginal(java.lang.Object... args) |
abstract void |
setResult(java.lang.Object result)
Change the result that should be parsed back to the caller of the original
Member |
public java.lang.reflect.Member method
Member
being invokedpublic java.lang.Object receiver
NULL
if it is a static callpublic java.lang.Object[] args
Member
public MethodBridge.BridgeType bridgeType
public abstract void setResult(java.lang.Object result)
Member
result
- public abstract java.lang.Object getResult()
Member
public abstract java.lang.Object invokeOriginal(java.lang.Object... args)