Update copyrighting

This commit is contained in:
2022-03-30 12:54:15 +08:00
parent b4f9c86ebc
commit cc8dbb8995
3 changed files with 10 additions and 0 deletions

View File

@@ -242,6 +242,7 @@ class ConstructorFinder(
* 获得 [Constructor] 实例处理类
*
* - ❗在 [memberInstance] 结果为空时使用此方法将无法获得对象
*
* - ❗若你设置了 [remedys] 请使用 [wait] 回调结果方法
* @return [Instance]
*/
@@ -257,6 +258,7 @@ class ConstructorFinder(
* 获得 [Constructor] 实例处理类
*
* - ❗若你设置了 [remedys] 必须使用此方法才能获得结果
*
* - ❗若你没有设置 [remedys] 此方法将不会被回调
* @param initiate 回调 [Instance]
*/
@@ -307,6 +309,8 @@ class ConstructorFinder(
* [Constructor] 实例处理类
*
* 调用与创建目标实例类对象
*
* - ❗请使用 [get] 或 [wait] 方法来获取 [Instance]
*/
inner class Instance {

View File

@@ -174,6 +174,8 @@ class FieldFinder(
/**
* [Field] 实例变量处理类
*
* - ❗请使用 [get] 方法来获取 [Instance]
* @param instance 当前 [Field] 所在类的实例对象
* @param self 当前 [Field] 自身的实例对象
*/

View File

@@ -265,6 +265,7 @@ class MethodFinder(
* 获得 [Method] 实例处理类
*
* - ❗在 [memberInstance] 结果为空时使用此方法将无法获得对象
*
* - ❗若你设置了 [remedys] 请使用 [wait] 回调结果方法
* @param instance 所在实例
* @return [Instance]
@@ -281,6 +282,7 @@ class MethodFinder(
* 获得 [Method] 实例处理类
*
* - ❗若你设置了 [remedys] 必须使用此方法才能获得结果
*
* - ❗若你没有设置 [remedys] 此方法将不会被回调
* @param instance 所在实例
* @param initiate 回调 [Instance]
@@ -332,6 +334,8 @@ class MethodFinder(
/**
* [Method] 实例处理类
*
* - ❗请使用 [get] 或 [wait] 方法来获取 [Instance]
* @param instance 当前 [Method] 所在类的实例对象
*/
inner class Instance(private val instance: Any?) {