blob: e8a8d4f70bd1cbec441c8e985b609653fb8d4c4e [file] [log] [blame]
package aQute.lib.data;
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
@Target(value={ElementType.FIELD})
public @interface Validator {
String value();
String reason() default "";
}