mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-13 01:59:22 +01:00
chore: make MultipleTargets into a subclass of Target
This commit is contained in:
parent
999f0500c7
commit
34f8ded1a8
2 changed files with 14 additions and 20 deletions
|
@ -1,19 +0,0 @@
|
|||
package ftbsc.lll.processor.annotations;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Repeatable;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
|
||||
/**
|
||||
* Used to support {@link Target} as a {@link Repeatable} annotation.
|
||||
* @since 0.5.0
|
||||
*/
|
||||
@Retention(RetentionPolicy.CLASS)
|
||||
@java.lang.annotation.Target(ElementType.METHOD)
|
||||
public @interface MultipleTargets {
|
||||
/**
|
||||
* @return the {@link Injector} annotations, as an array
|
||||
*/
|
||||
Target[] value();
|
||||
}
|
|
@ -15,7 +15,7 @@ import java.lang.annotation.RetentionPolicy;
|
|||
* @see Injector
|
||||
*/
|
||||
@Retention(RetentionPolicy.CLASS)
|
||||
@Repeatable(MultipleTargets.class)
|
||||
@Repeatable(Target.List.class)
|
||||
@java.lang.annotation.Target(ElementType.METHOD)
|
||||
public @interface Target {
|
||||
|
||||
|
@ -52,4 +52,17 @@ public @interface Target {
|
|||
* @since 0.5.2
|
||||
*/
|
||||
boolean bridge() default false;
|
||||
|
||||
/**
|
||||
* Used to support {@link Target} as a {@link Repeatable} annotation.
|
||||
* @since 0.6.1
|
||||
*/
|
||||
@Retention(RetentionPolicy.CLASS)
|
||||
@java.lang.annotation.Target(ElementType.METHOD)
|
||||
@interface List {
|
||||
/**
|
||||
* @return the {@link Injector} annotations, as an array
|
||||
*/
|
||||
Target[] value();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue