Add java doc to onSystemServerLoad

This commit is contained in:
LoveSy 2023-01-11 10:28:52 +08:00
parent 371bec966f
commit 2e7977edc4
No known key found for this signature in database
1 changed files with 18 additions and 0 deletions

View File

@ -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);
} }