1
2
3
4
5
6
7
8
9
10
11 package org.eclipse.jgit.annotations;
12
13 import static java.lang.annotation.ElementType.FIELD;
14 import static java.lang.annotation.ElementType.LOCAL_VARIABLE;
15 import static java.lang.annotation.ElementType.METHOD;
16 import static java.lang.annotation.ElementType.PARAMETER;
17
18 import java.lang.annotation.Documented;
19 import java.lang.annotation.Retention;
20 import java.lang.annotation.RetentionPolicy;
21 import java.lang.annotation.Target;
22
23
24
25
26
27
28
29
30
31 @Documented
32 @Retention(RetentionPolicy.CLASS)
33 @Target({ FIELD, METHOD, PARAMETER, LOCAL_VARIABLE })
34 public @interface NonNull {
35
36 }