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