| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AnnotationMonitor |
|
| 1.0;1 |
| 1 | package org.jbehave.core.configuration; | |
| 2 | ||
| 3 | import java.lang.annotation.Annotation; | |
| 4 | ||
| 5 | public interface AnnotationMonitor { | |
| 6 | ||
| 7 | void elementCreationFailed(Class<?> elementClass, Exception cause); | |
| 8 | ||
| 9 | void annotationNotFound(Class<? extends Annotation> annotation, Object annotatedInstance); | |
| 10 | ||
| 11 | } |