package org.test4j.datafilling.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(value = { ElementType.FIELD, ElementType.PARAMETER }) @Retention(RetentionPolicy.RUNTIME) public @interface FillFloat { String value() default ""; float min() default 0.0f; float max() default 0.0f; String comment() default ""; }