Some corrections on docs

This commit is contained in:
Nullptr 2023-07-21 15:45:23 +08:00
parent c3dd0d919c
commit 5b4bcfe951
No known key found for this signature in database
3 changed files with 12 additions and 12 deletions

View File

@ -31,7 +31,7 @@ public class XposedContextWrapper extends ContextWrapper implements XposedInterf
} }
/** /**
* Get the Xposed API version of current implementation. * Gets the Xposed API version of current implementation.
* *
* @return API version * @return API version
*/ */
@ -40,7 +40,7 @@ public class XposedContextWrapper extends ContextWrapper implements XposedInterf
} }
/** /**
* {@inheritDoc} * Gets the implementation {@link XposedContext}. Should not be used by modules.
*/ */
@NonNull @NonNull
@Override @Override

View File

@ -16,14 +16,14 @@ public interface XposedModuleInterface {
*/ */
interface ModuleLoadedParam { interface ModuleLoadedParam {
/** /**
* Get information about whether the module is running in system server. * Gets information about whether the module is running in system server.
* *
* @return {@code true} if the module is running in system server * @return {@code true} if the module is running in system server
*/ */
boolean isSystemServer(); boolean isSystemServer();
/** /**
* Get the process name. * Gets the process name.
* *
* @return The process name * @return The process name
*/ */
@ -36,7 +36,7 @@ public interface XposedModuleInterface {
*/ */
interface SystemServerLoadedParam { interface SystemServerLoadedParam {
/** /**
* Get the class loader of system server. * Gets the class loader of system server.
* *
* @return The class loader * @return The class loader
*/ */
@ -49,7 +49,7 @@ public interface XposedModuleInterface {
*/ */
interface PackageLoadedParam { interface PackageLoadedParam {
/** /**
* Get the package name of the package being loaded. * Gets the package name of the package being loaded.
* *
* @return The package name. * @return The package name.
*/ */
@ -57,7 +57,7 @@ public interface XposedModuleInterface {
String getPackageName(); String getPackageName();
/** /**
* Get the ApplicationInfo of the package being loaded. * Gets the ApplicationInfo of the package being loaded.
* *
* @return The ApplicationInfo. * @return The ApplicationInfo.
*/ */
@ -74,7 +74,7 @@ public interface XposedModuleInterface {
ClassLoader getDefaultClassLoader(); ClassLoader getDefaultClassLoader();
/** /**
* Get the class loader of the package being loaded. * Gets the class loader of the package being loaded.
* *
* @return The class loader. * @return The class loader.
*/ */
@ -82,7 +82,7 @@ public interface XposedModuleInterface {
ClassLoader getClassLoader(); ClassLoader getClassLoader();
/** /**
* Get information about whether is this package the first and main package of the app process. * Gets information about whether is this package the first and main package of the app process.
* *
* @return {@code true} if this is the first package. * @return {@code true} if this is the first package.
*/ */
@ -90,7 +90,7 @@ public interface XposedModuleInterface {
} }
/** /**
* Get notified when a package is loaded into the app process.<br/> * Gets notified when a package is loaded into the app process.<br/>
* This callback could be invoked multiple times for the same process on each package. * This callback could be invoked multiple times for the same process on each package.
* *
* @param param Information about the package being loaded * @param param Information about the package being loaded
@ -98,7 +98,7 @@ public interface XposedModuleInterface {
void onPackageLoaded(@NonNull PackageLoadedParam param); void onPackageLoaded(@NonNull PackageLoadedParam param);
/** /**
* Get notified when the system server is loaded. * Gets notified when the system server is loaded.
* *
* @param param Information about system server * @param param Information about system server
*/ */

View File

@ -6,7 +6,7 @@ import androidx.annotation.Nullable;
import java.io.Closeable; import java.io.Closeable;
/** /**
* The interface Dex parser. * Xposed interface for parsing dex files.
*/ */
@SuppressWarnings("unused") @SuppressWarnings("unused")
public interface DexParser extends Closeable { public interface DexParser extends Closeable {