mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-14 03:29:23 +01:00
fix: small fixes in javadocs
This commit is contained in:
parent
2cdad9a482
commit
6375d4e7d3
2 changed files with 7 additions and 4 deletions
|
@ -44,10 +44,12 @@ public interface IInjector {
|
|||
* compiles that information, as well as the return type, in as little space as
|
||||
* possible.
|
||||
* Examples:
|
||||
* (IF)V - returns void, takes in int and float
|
||||
* (Ljava/lang/Object;)I - returns int, takes in a java.lang.Object
|
||||
* (ILjava/lang/String;)[I - returns int[], takes in an int and a String
|
||||
* See <a href="https://asm.ow2.io/asm4-guide.pdf">https://asm.ow2.io/asm4-guide.pdf</a> for a more detailed explanation.
|
||||
* <ul>
|
||||
* <li>(IF)V - returns void, takes in int and float</li>
|
||||
* <li>(Ljava/lang/Object;)I - returns int, takes in a java.lang.Object</li>
|
||||
* <li>(ILjava/lang/String;)[I - returns int[], takes in an int and a String</li>
|
||||
* </ul>
|
||||
* See ASM's <a href="https://asm.ow2.io/asm4-guide.pdf">documentation</a> for a more detailed explanation.
|
||||
* @return descriptor of method to target.
|
||||
*/
|
||||
String methodDesc();
|
||||
|
|
|
@ -6,6 +6,7 @@ import java.util.ArrayList;
|
|||
|
||||
/**
|
||||
* Builds a method descriptor for you.
|
||||
* See the <a href="https://asm.ow2.io/asm4-guide.pdf">documentation</a> to better understand what this is.
|
||||
* Parameters must be given in a specific order.
|
||||
* Return type should always be specified for clarity, but defaults to void.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue