Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
UsingSteps |
|
| 0.0;0 |
1 | package org.jbehave.core.annotations; | |
2 | ||
3 | import java.lang.annotation.ElementType; | |
4 | import java.lang.annotation.Inherited; | |
5 | import java.lang.annotation.Retention; | |
6 | import java.lang.annotation.RetentionPolicy; | |
7 | import java.lang.annotation.Target; | |
8 | ||
9 | @Retention(RetentionPolicy.RUNTIME) | |
10 | @Target( { ElementType.TYPE }) | |
11 | @Inherited | |
12 | public @interface UsingSteps { | |
13 | ||
14 | Class<?>[] instances() default {}; | |
15 | ||
16 | boolean inheritInstances() default true; | |
17 | ||
18 | } |