aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/lll/processor/annotations/FindMethod.java
blob: bf934423f974d3ee3c6736f7b1b603b142c964d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package ftbsc.lll.processor.annotations;

import ftbsc.lll.proxies.MethodProxy;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Overrides the marked method in the Injector, having the
 * implementation return a built {@link MethodProxy} with
 * the specified parameters.
 * @implNote if name is omitted, the name of the annotated
 *           method is used.
 * @since 0.2.0
 */
@Retention(RetentionPolicy.CLASS)
@java.lang.annotation.Target(ElementType.METHOD)
public @interface FindMethod {
   Class<?> parent();
   String name() default "";
   Class<?>[] params();
}