Update README.md
This commit is contained in:
parent
e4a8470ecf
commit
47723fccfb
23
README.md
23
README.md
@ -90,6 +90,10 @@ public class TweakFoo {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If this looks a bit confusing: don't worry, [it gets simpler](#a-simple-example) after we remove all the things that can
|
||||||
|
be inferred automatically by the library. We start with a more complicated example to show explicitly what's happening
|
||||||
|
under the hood in case it's needed in more complex use-cases.
|
||||||
|
|
||||||
We specify using the `@Inject` annotation that we would like to inject the annotated method into the targeted class (
|
We specify using the `@Inject` annotation that we would like to inject the annotated method into the targeted class (
|
||||||
we'll get to how we target a class in a sec), that we would like to append the code `AFTER` the existing code, that we
|
we'll get to how we target a class in a sec), that we would like to append the code `AFTER` the existing code, that we
|
||||||
are targeting a method named `addMyNumber` which accepts an int (specified by `(I)`) and returns an int (specified by
|
are targeting a method named `addMyNumber` which accepts an int (specified by `(I)`) and returns an int (specified by
|
||||||
@ -143,12 +147,11 @@ To target a class, simply create an instance of the `dev.w1zzrd.asm.Combine` cla
|
|||||||
annotated MethodNodes. For example, using the example code described earlier, we could do as follows:
|
annotated MethodNodes. For example, using the example code described earlier, we could do as follows:
|
||||||
|
|
||||||
```java
|
```java
|
||||||
import dev.w1zzrd.asm.Combine;
|
import dev.w1zzrd.asm.*;
|
||||||
import dev.w1zzrd.asm.GraftSource;
|
import jdk.internal.org.objectweb.asm.tree.MethodNode;
|
||||||
import dev.w1zzrd.asm.Loader;
|
|
||||||
|
|
||||||
public class Run {
|
public class Run {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) throws Exception {
|
||||||
// This is the class we would like to inject code into
|
// This is the class we would like to inject code into
|
||||||
Combine target = new Combine(Loader.getClassNode("Foo"));
|
Combine target = new Combine(Loader.getClassNode("Foo"));
|
||||||
|
|
||||||
@ -184,7 +187,7 @@ available to the default ClassLoader's classpath. In this case, we can simply do
|
|||||||
import dev.w1zzrd.asm.Injector;
|
import dev.w1zzrd.asm.Injector;
|
||||||
|
|
||||||
public class Run {
|
public class Run {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) throws Exception {
|
||||||
// Locates all necessary tweaks and injects them into Foo
|
// Locates all necessary tweaks and injects them into Foo
|
||||||
Injector.injectAll("Foo").compile();
|
Injector.injectAll("Foo").compile();
|
||||||
|
|
||||||
@ -200,9 +203,7 @@ The only caveat is that classes injected this way must have an `@InjectClass` an
|
|||||||
In our example, this would mean that the `TweakFoo` class would look as follows:
|
In our example, this would mean that the `TweakFoo` class would look as follows:
|
||||||
|
|
||||||
```java
|
```java
|
||||||
import dev.w1zzrd.asm.InPlaceInjection;
|
import dev.w1zzrd.asm.*;
|
||||||
import dev.w1zzrd.asm.Inject;
|
|
||||||
import dev.w1zzrd.asm.InjectClass;
|
|
||||||
|
|
||||||
// This marks the class as targeting Foo
|
// This marks the class as targeting Foo
|
||||||
@InjectClass(Foo.class)
|
@InjectClass(Foo.class)
|
||||||
@ -221,11 +222,9 @@ method, the target should never be ambiguous. In fact, the resolution is intelli
|
|||||||
is unambiguous for the targeted method name in the targeted class, the `acceptOriginalReturn` value can even be omitted.
|
is unambiguous for the targeted method name in the targeted class, the `acceptOriginalReturn` value can even be omitted.
|
||||||
This means that a minimal example implementation of the `TweakFoo` class could look as follows:
|
This means that a minimal example implementation of the `TweakFoo` class could look as follows:
|
||||||
|
|
||||||
|
#### A simple example:
|
||||||
```java
|
```java
|
||||||
import dev.w1zzrd.asm.InPlaceInjection;
|
import dev.w1zzrd.asm.*;
|
||||||
import dev.w1zzrd.asm.Inject;
|
|
||||||
import dev.w1zzrd.asm.InjectClass;
|
|
||||||
|
|
||||||
import static dev.w1zzrd.asm.InPlaceInjection.AFTER;
|
import static dev.w1zzrd.asm.InPlaceInjection.AFTER;
|
||||||
|
|
||||||
@InjectClass(Foo.class)
|
@InjectClass(Foo.class)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user