Add java doc to onSystemServerLoad
This commit is contained in:
parent
371bec966f
commit
2e7977edc4
|
|
@ -47,10 +47,23 @@ public interface XposedModuleInterface {
|
||||||
Bundle getExtras();
|
Bundle getExtras();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The interface System server loaded param.
|
||||||
|
*/
|
||||||
interface SystemServerLoadedParam {
|
interface SystemServerLoadedParam {
|
||||||
|
/**
|
||||||
|
* Gets class loader.
|
||||||
|
*
|
||||||
|
* @return the class loader
|
||||||
|
*/
|
||||||
@NonNull
|
@NonNull
|
||||||
ClassLoader getClassLoader();
|
ClassLoader getClassLoader();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets extras.
|
||||||
|
*
|
||||||
|
* @return the extras
|
||||||
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
Bundle getExtras();
|
Bundle getExtras();
|
||||||
}
|
}
|
||||||
|
|
@ -106,5 +119,10 @@ public interface XposedModuleInterface {
|
||||||
*/
|
*/
|
||||||
void onPackageLoaded(@NonNull PackageLoadedParam param);
|
void onPackageLoaded(@NonNull PackageLoadedParam param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* On system server loaded.
|
||||||
|
*
|
||||||
|
* @param param the param
|
||||||
|
*/
|
||||||
void onSystemServerLoaded(@NonNull SystemServerLoadedParam param);
|
void onSystemServerLoaded(@NonNull SystemServerLoadedParam param);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue