| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||
| DescriptorAnnotationHandler |
|
| 0.0;0 |
| 1 | package org.trails.descriptor.annotation; |
|
| 2 | ||
| 3 | import java.lang.annotation.Annotation; |
|
| 4 | ||
| 5 | import org.trails.descriptor.IDescriptor; |
|
| 6 | ||
| 7 | public interface DescriptorAnnotationHandler<T extends Annotation, X extends IDescriptor> |
|
| 8 | { |
|
| 9 | public X decorateFromAnnotation(T annotation, X descriptor); |
|
| 10 | } |