blob: 2bbf2537657e961829346d54a06cff24b68d16c6 [file] [log] [blame]
Stuart McCullochbb014372012-06-07 21:57:32 +00001package aQute.lib.data;
2
3import java.lang.annotation.*;
4
5@Retention(RetentionPolicy.RUNTIME)
6@Target(value={ElementType.FIELD})
7public @interface AllowNull {
8 String reason() default "";
9}