Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
NeedleInjectionProvider |
|
| 0.0;0 |
1 | package org.jbehave.core.annotations.needle; | |
2 | ||
3 | import java.lang.annotation.ElementType; | |
4 | import java.lang.annotation.Retention; | |
5 | import java.lang.annotation.RetentionPolicy; | |
6 | import java.lang.annotation.Target; | |
7 | ||
8 | import de.akquinet.jbosscc.needle.injection.InjectionProvider; | |
9 | ||
10 | /** | |
11 | * Annotation to mark InjectionProviders in the JBehave steps. <br/> | |
12 | * Should be placed on fields of type {@link InjectionProvider} or an array of those. | |
13 | * | |
14 | * @author Jan Galinski, Holisticon AG (jan.galinski@holisticon.de) | |
15 | * @author Simon Zambrovski, Holisticon AG (simon.zambrovski@holisticon.de) | |
16 | */ | |
17 | @Target({ ElementType.FIELD }) | |
18 | @Retention(RetentionPolicy.RUNTIME) | |
19 | public @interface NeedleInjectionProvider { | |
20 | // Nothing here | |
21 | } |