| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| DataConfiguration |
|
| 0.0;0 |
| 1 | package nl.beesting.beangenerator.util; | |
| 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 | /** | |
| 9 | * | |
| 10 | * @author edewit | |
| 11 | */ | |
| 12 | @Retention(RetentionPolicy.RUNTIME) | |
| 13 | @Target(ElementType.METHOD) | |
| 14 | public @interface DataConfiguration { | |
| 15 | ||
| 16 | String generator() default ""; | |
| 17 | ||
| 18 | String[] parameters() default ""; | |
| 19 | ||
| 20 | Class collectionType(); | |
| 21 | ||
| 22 | Class returnType(); | |
| 23 | } |