aboutsummaryrefslogtreecommitdiff
path: root/android-annotation-stubs
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2022-03-08 01:44:11 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-03-08 01:44:11 +0000
commit02fc1d59868bdded8cd1605983d579b2bf75e3e0 (patch)
treee7dfe5daeab98b225bb9f472e43ea319259f4e73 /android-annotation-stubs
parent36a0ea01bf35c89c3a1dae68cfeecde390bb4a09 (diff)
parent24a44d71c955b83666317cb50639137639b7e277 (diff)
downloadauto-02fc1d59868bdded8cd1605983d579b2bf75e3e0.tar.gz
Original change: https://android-review.googlesource.com/c/platform/external/auto/+/2008542 Change-Id: I2f6c9fe46f8f56ad35781713a93ea1a5cc2504ab
Diffstat (limited to 'android-annotation-stubs')
-rwxr-xr-xandroid-annotation-stubs/gen_annotations.sh1
-rw-r--r--android-annotation-stubs/src/org/checkerframework/checker/nullness/qual/Nullable.java40
2 files changed, 41 insertions, 0 deletions
diff --git a/android-annotation-stubs/gen_annotations.sh b/android-annotation-stubs/gen_annotations.sh
index 90c9fcfb..4766af97 100755
--- a/android-annotation-stubs/gen_annotations.sh
+++ b/android-annotation-stubs/gen_annotations.sh
@@ -6,6 +6,7 @@ declare -A IMPORT
ANNOTATIONS=(
net.ltgt.gradle.incap.IncrementalAnnotationProcessor
+ org.checkerframework.checker.nullness.qual.Nullable
)
PARAMETER["net.ltgt.gradle.incap.IncrementalAnnotationProcessor"]="IncrementalAnnotationProcessorType"
diff --git a/android-annotation-stubs/src/org/checkerframework/checker/nullness/qual/Nullable.java b/android-annotation-stubs/src/org/checkerframework/checker/nullness/qual/Nullable.java
new file mode 100644
index 00000000..276d64c1
--- /dev/null
+++ b/android-annotation-stubs/src/org/checkerframework/checker/nullness/qual/Nullable.java
@@ -0,0 +1,40 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.checkerframework.checker.nullness.qual;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/* This is an annotation stub to avoid dependencies on annotations that aren't
+ * in the Android platform source tree. */
+
+@Target({
+ ElementType.ANNOTATION_TYPE,
+ ElementType.CONSTRUCTOR,
+ ElementType.FIELD,
+ ElementType.LOCAL_VARIABLE,
+ ElementType.METHOD,
+ ElementType.PACKAGE,
+ ElementType.PARAMETER,
+ ElementType.TYPE,
+ ElementType.TYPE_PARAMETER,
+ ElementType.TYPE_USE
+})
+@Retention(RetentionPolicy.SOURCE)
+public @interface Nullable {}