java.lang.Object | |
↳ | de.robv.android.xposed.callbacks.XCallback.Param |
Known Direct Subclasses |
Base class for Xposed callback parameters.
Protected Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This constructor is deprecated.
This constructor can't be hidden for technical reasons. Nevertheless, don't use it!
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This can be used to store any data for the scope of the callback.
| |||||||||||
Returns an object stored with
setObjectExtra(String, Object) .
| |||||||||||
Stores any object for the scope of the callback.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
This constructor is deprecated.
This constructor can't be hidden for technical reasons. Nevertheless, don't use it!
This can be used to store any data for the scope of the callback.
Use this instead of instance variables, as it has a clear reference to e.g. each separate call to a method, even when the same method is called recursively.
Returns an object stored with setObjectExtra(String, Object)
.
Stores any object for the scope of the callback. For data types that support it, use
the Bundle
returned by getExtra()
instead.