blob: 0b2530039491625a87094dd8269ee51372c6bb1a [file] [log] [blame]
Stuart McCullochbb014372012-06-07 21:57:32 +00001package aQute.lib.data;
2
3import java.lang.annotation.*;
4
5@Retention(RetentionPolicy.RUNTIME)
Stuart McCulloch2286f232012-06-15 13:27:53 +00006@Target(value = {
7 ElementType.FIELD
8})
Stuart McCullochbb014372012-06-07 21:57:32 +00009public @interface AllowNull {
10 String reason() default "";
11}