1 | |
package org.jbehave.core.annotations.weld; |
2 | |
|
3 | |
import static java.lang.annotation.ElementType.CONSTRUCTOR; |
4 | |
import static java.lang.annotation.ElementType.FIELD; |
5 | |
import static java.lang.annotation.ElementType.METHOD; |
6 | |
import static java.lang.annotation.ElementType.PARAMETER; |
7 | |
import static java.lang.annotation.ElementType.TYPE; |
8 | |
|
9 | |
import java.lang.annotation.Inherited; |
10 | |
import java.lang.annotation.Retention; |
11 | |
import java.lang.annotation.RetentionPolicy; |
12 | |
import java.lang.annotation.Target; |
13 | |
|
14 | |
import javax.inject.Qualifier; |
15 | |
|
16 | |
@Retention(RetentionPolicy.RUNTIME) |
17 | |
@Target({ TYPE, METHOD, PARAMETER, FIELD, CONSTRUCTOR }) |
18 | |
@Inherited |
19 | |
@Qualifier |
20 | |
public @interface UsingWeld { |
21 | |
|
22 | |
} |