mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-09-04 09:45:19 +08:00
Modify change FieldCondition, MethodCondition, ConstructorCondition to FieldConditions, MethodConditions, ConstructorConditions in ReflectionFactory
This commit is contained in:
@@ -169,7 +169,7 @@ inner class RemedyPlan internal constructor()
|
||||
#### constructor *- method*
|
||||
|
||||
```kotlin
|
||||
inline fun constructor(initiate: ConstructorCondition)
|
||||
inline fun constructor(initiate: ConstructorConditions)
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
|
@@ -61,7 +61,7 @@ fun superClass(): SuperClass
|
||||
### field *- method*
|
||||
|
||||
```kotlin
|
||||
inline fun field(initiate: FieldCondition): FieldFinder.Result.Instance
|
||||
inline fun field(initiate: FieldConditions): FieldFinder.Result.Instance
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -75,7 +75,7 @@ inline fun field(initiate: FieldCondition): FieldFinder.Result.Instance
|
||||
### method *- method*
|
||||
|
||||
```kotlin
|
||||
inline fun method(initiate: MethodCondition): MethodFinder.Result.Instance
|
||||
inline fun method(initiate: MethodConditions): MethodFinder.Result.Instance
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -131,7 +131,7 @@ val simpleName: String
|
||||
#### field *- method*
|
||||
|
||||
```kotlin
|
||||
inline fun field(initiate: FieldCondition): FieldFinder.Result.Instance
|
||||
inline fun field(initiate: FieldConditions): FieldFinder.Result.Instance
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -145,7 +145,7 @@ inline fun field(initiate: FieldCondition): FieldFinder.Result.Instance
|
||||
#### method *- method*
|
||||
|
||||
```kotlin
|
||||
inline fun method(initiate: MethodCondition): MethodFinder.Result.Instance
|
||||
inline fun method(initiate: MethodConditions): MethodFinder.Result.Instance
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
|
@@ -189,7 +189,7 @@ inner class RemedyPlan internal constructor()
|
||||
#### field *- method*
|
||||
|
||||
```kotlin
|
||||
inline fun field(initiate: FieldCondition): Result
|
||||
inline fun field(initiate: FieldConditions): Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
|
@@ -271,7 +271,7 @@ inner class RemedyPlan internal constructor()
|
||||
#### method *- method*
|
||||
|
||||
```kotlin
|
||||
inline fun method(initiate: MethodCondition): Result
|
||||
inline fun method(initiate: MethodConditions): Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
|
@@ -258,7 +258,7 @@ inline fun Class<*>.hasField(initiate: FieldCondition): Boolean
|
||||
### Class.hasMethod *- ext-method*
|
||||
|
||||
```kotlin
|
||||
inline fun Class<*>.hasMethod(initiate: MethodCondition): Boolean
|
||||
inline fun Class<*>.hasMethod(initiate: MethodConditions): Boolean
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -284,7 +284,7 @@ inline fun Class<*>.hasMethod(initiate: MethodCondition): Boolean
|
||||
### Class.hasConstructor *- ext-method*
|
||||
|
||||
```kotlin
|
||||
inline fun Class<*>.hasConstructor(initiate: ConstructorCondition): Boolean
|
||||
inline fun Class<*>.hasConstructor(initiate: ConstructorConditions): Boolean
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -370,7 +370,7 @@ inline fun Class<*>.hasModifiers(initiate: ModifierRules.() -> Unit): Boolean
|
||||
### Class.field *- ext-method*
|
||||
|
||||
```kotlin
|
||||
inline fun Class<*>.field(initiate: FieldCondition): FieldFinder.Result
|
||||
inline fun Class<*>.field(initiate: FieldConditions): FieldFinder.Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -388,7 +388,7 @@ inline fun Class<*>.field(initiate: FieldCondition): FieldFinder.Result
|
||||
### Class.method *- ext-method*
|
||||
|
||||
```kotlin
|
||||
inline fun Class<*>.method(initiate: MethodCondition): MethodFinder.Result
|
||||
inline fun Class<*>.method(initiate: MethodConditions): MethodFinder.Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -416,7 +416,7 @@ inline fun Class<*>.method(initiate: MethodCondition): MethodFinder.Result
|
||||
### Class.constructor *- ext-method*
|
||||
|
||||
```kotlin
|
||||
inline fun Class<*>.constructor(initiate: ConstructorCondition): ConstructorFinder.Result
|
||||
inline fun Class<*>.constructor(initiate: ConstructorConditions): ConstructorFinder.Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -504,11 +504,11 @@ inline fun <reified T : Any> T.current(ignored: Boolean, initiate: CurrentClass.
|
||||
### Class.buildOf *- ext-method*
|
||||
|
||||
```kotlin
|
||||
inline fun Class<*>.buildOf(vararg param: Any?, initiate: ConstructorCondition): Any?
|
||||
inline fun Class<*>.buildOf(vararg param: Any?, initiate: ConstructorConditions): Any?
|
||||
```
|
||||
|
||||
```kotlin
|
||||
inline fun <T> Class<*>.buildOf(vararg param: Any?, initiate: ConstructorCondition): T?
|
||||
inline fun <T> Class<*>.buildOf(vararg param: Any?, initiate: ConstructorConditions): T?
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
|
@@ -279,7 +279,7 @@ fun allMembers(type: MembersType)
|
||||
#### method *- method*
|
||||
|
||||
```kotlin
|
||||
inline fun method(initiate: MethodCondition): MethodFinder.Result
|
||||
inline fun method(initiate: MethodConditions): MethodFinder.Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -334,7 +334,7 @@ injectMember {
|
||||
#### constructor *- method*
|
||||
|
||||
```kotlin
|
||||
inline fun constructor(initiate: ConstructorCondition): ConstructorFinder.Result
|
||||
inline fun constructor(initiate: ConstructorConditions): ConstructorFinder.Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -382,7 +382,7 @@ injectMember {
|
||||
#### HookParam.field *- i-ext-method*
|
||||
|
||||
```kotlin
|
||||
inline fun HookParam.field(initiate: FieldCondition): FieldFinder.Result
|
||||
inline fun HookParam.field(initiate: FieldConditions): FieldFinder.Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -423,7 +423,7 @@ injectMember {
|
||||
#### HookParam.method *- i-ext-method*
|
||||
|
||||
```kotlin
|
||||
inline fun HookParam.method(initiate: MethodCondition): MethodFinder.Result
|
||||
inline fun HookParam.method(initiate: MethodConditions): MethodFinder.Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
@@ -441,7 +441,7 @@ inline fun HookParam.method(initiate: MethodCondition): MethodFinder.Result
|
||||
#### HookParam.constructor *- i-ext-method*
|
||||
|
||||
```kotlin
|
||||
inline fun HookParam.constructor(initiate: ConstructorCondition): ConstructorFinder.Result
|
||||
inline fun HookParam.constructor(initiate: ConstructorConditions): ConstructorFinder.Result
|
||||
```
|
||||
|
||||
**变更记录**
|
||||
|
Reference in New Issue
Block a user