aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author zaaarf <zaaarf@proton.me>2023-04-12 19:48:32 +0200
committer zaaarf <zaaarf@proton.me>2023-04-12 19:48:32 +0200
commit03a2fd37d22a72d44124e0cf309049ca21aea042 (patch)
treea097aab59a4d01a56fead3da0094494e808f5a9d
parenta91d7c810fced403cacd92881bcab6a19e77201d (diff)
chore: updated readme
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 76d6ef0..2af8a9a 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ While patching, you may find yourself needing to refer to other methods and fiel
FieldProxy fieldName;
```
-This is the simplest case. This finder will match any field named `fieldName` within the class `SomeClass`. If the class is unspecified, the one contained within `@Patch` is used instead. You may overrule the field name by adding `name = "actualName"` to your `@Find` annotation.
+This is the simplest case. This finder will match any field named `fieldName` within the class `SomeClass`.
```java
@Find(SomeClass.class)
@@ -82,7 +82,9 @@ MethodProxy methodProxy;
abstract void someMethod(int i, int j);
```
-MethodProxies need a stub to correctly match their target. Matching by name is also supported - either by setting the `strict` flag of the `@Target` annotation or by setting the `name` parameter in the `@Find` annotation - but is not recommended. The class specified within `@Find`, much like with fields, will be considered the parent class of the method you are looking for. If omitted, it defaults to the one specified in @Patch.
+MethodProxies need a stub to correctly match their target. Matching by name is also supported - either by setting the `strict` flag of the `@Target` annotation or by setting the `name` parameter in the `@Find` annotation - but is not recommended. The class specified within `@Find`, much like with fields, will be considered the parent class of the method you are looking for.
+
+Whenever the class is unspecified in a finder (except in TypeProxy's case, which is an error) it will be assumed to be the class containing the `@Find` annotation - that is, the patch class.
Lillero provides three classes to use these in your injectors: `FieldProxyInsnNode`, `MethodProxyInsnNode` and `TypeProxyInsnNode`. Each wraps the equivalent [ObjectWeb ASM](https://asm.ow2.io/) `InsnNode`. For instance: