| java.lang.Object | ||
| ↳ | de.robv.android.xposed.callbacks.XCallback.Param | |
| ↳ | de.robv.android.xposed.XC_MethodHook.MethodHookParam | |
Wraps information about the method call and allows to influence it.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| args | Arguments to the method call. | ||||||||||
| method | The hooked method/constructor. | ||||||||||
| thisObject |
The this reference for an instance method, or null for static methods.
|
||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the result of the method call.
| |||||||||||
Returns the result of the method call, or throws the Throwable caused by it.
| |||||||||||
Returns the
Throwable thrown by the method, or null.
| |||||||||||
Returns true if an exception was thrown by the method.
| |||||||||||
Modify the result of the method call.
| |||||||||||
Modify the exception thrown of the method call.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
de.robv.android.xposed.callbacks.XCallback.Param
| |||||||||||
From class
java.lang.Object
| |||||||||||
Returns the result of the method call, or throws the Throwable caused by it.
| Throwable |
|---|
Returns true if an exception was thrown by the method.
Modify the result of the method call.
If called from XC_MethodHook.beforeHookedMethod(XC_MethodHook.MethodHookParam), it prevents the call to the original method.
Modify the exception thrown of the method call.
If called from XC_MethodHook.beforeHookedMethod(XC_MethodHook.MethodHookParam), it prevents the call to the original method.