mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-22 08:44:50 +01:00
chore: fix indentation in javadocs
This commit is contained in:
parent
34f8ded1a8
commit
5c2d780acb
3 changed files with 9 additions and 10 deletions
|
@ -65,9 +65,8 @@ public class LilleroProcessor extends AbstractProcessor {
|
||||||
public static boolean obfuscateInjectorMetadata = true;
|
public static boolean obfuscateInjectorMetadata = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes the processor with the processing environment by
|
* Initializes the processor with the processing environment by setting the
|
||||||
* setting the {@code processingEnv} field to the value of the
|
* {@code processingEnv} field to the value of the {@code processingEnv} argument.
|
||||||
* {@code processingEnv} argument.
|
|
||||||
* @param processingEnv environment to access facilities the tool framework
|
* @param processingEnv environment to access facilities the tool framework
|
||||||
* provides to the processor
|
* provides to the processor
|
||||||
* @throws IllegalStateException if this method is called more than once.
|
* @throws IllegalStateException if this method is called more than once.
|
||||||
|
|
|
@ -30,8 +30,8 @@ public @interface Find {
|
||||||
* fully-qualified name. If it's a number instead of a valid name, the class will be
|
* fully-qualified name. If it's a number instead of a valid name, the class will be
|
||||||
* treated as an anonymous class, and will therefore be automatically unverified.
|
* treated as an anonymous class, and will therefore be automatically unverified.
|
||||||
* For a {@link TypeProxy}, this refers to the class itself rather than the parent.
|
* For a {@link TypeProxy}, this refers to the class itself rather than the parent.
|
||||||
* @return the name of the inner class that contains the target,
|
* @return the name of the inner class that contains the target, defaults to empty
|
||||||
* defaults to empty string (not an inner class)
|
* string (not an inner class)
|
||||||
* @since 0.5.0
|
* @since 0.5.0
|
||||||
*/
|
*/
|
||||||
String innerName() default "";
|
String innerName() default "";
|
||||||
|
@ -45,8 +45,8 @@ public @interface Find {
|
||||||
* relevant class. It is generally recommended that you use a @link Target} stub
|
* relevant class. It is generally recommended that you use a @link Target} stub
|
||||||
* for methods, as this can lead to unpredictable behaviour at runtime.
|
* for methods, as this can lead to unpredictable behaviour at runtime.
|
||||||
* It will have no effect on a {@link TypeProxy}.
|
* It will have no effect on a {@link TypeProxy}.
|
||||||
* @return the name of the target, will default to the empty string
|
* @return the name of the target, will default to the empty string (the name of
|
||||||
* (the name of the annotated method will instead be used).
|
* the annotated method will instead be used).
|
||||||
* @since 0.5.0
|
* @since 0.5.0
|
||||||
*/
|
*/
|
||||||
String name() default "";
|
String name() default "";
|
||||||
|
|
|
@ -23,8 +23,8 @@ public @interface Patch {
|
||||||
* This is the inner class name to append after a $ symbol to the already acquired
|
* This is the inner class name to append after a $ symbol to the already acquired
|
||||||
* fully-qualified name. If it's a number instead of a valid name, the class will be
|
* fully-qualified name. If it's a number instead of a valid name, the class will be
|
||||||
* treated as an anonymous class, and will therefore be automatically unverified.
|
* treated as an anonymous class, and will therefore be automatically unverified.
|
||||||
* @return the name of the inner class that contains the target,
|
* @return the name of the inner class that contains the target, defaults to empty
|
||||||
* defaults to empty string (not an inner class)
|
* string (not an inner class)
|
||||||
* @since 0.5.0
|
* @since 0.5.0
|
||||||
*/
|
*/
|
||||||
String innerName() default "";
|
String innerName() default "";
|
||||||
|
|
Loading…
Reference in a new issue