aboutsummaryrefslogtreecommitdiffstats
path: root/annotations
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2012-01-27 12:01:27 -0800
committerXavier Ducrohet <xav@android.com>2012-01-27 16:06:10 -0800
commit16234ae8bff35630ea6f19f5ffde5df1f8bff669 (patch)
treed29575cd32c9cfc025087ee0043528fad1068dfa /annotations
parent32456409b8351a80d55e3b94c2a25d7117c970aa (diff)
downloadsdk-16234ae8bff35630ea6f19f5ffde5df1f8bff669.zip
sdk-16234ae8bff35630ea6f19f5ffde5df1f8bff669.tar.gz
sdk-16234ae8bff35630ea6f19f5ffde5df1f8bff669.tar.bz2
Support annotations for backward compatibility.
Change-Id: I7f592876b02c8859781a3b52e422dbebfa92ae8d
Diffstat (limited to 'annotations')
-rw-r--r--annotations/Android.mk26
-rw-r--r--annotations/src/android/annotations/tools/SuppressLint.java38
2 files changed, 64 insertions, 0 deletions
diff --git a/annotations/Android.mk b/annotations/Android.mk
new file mode 100644
index 0000000..cbfe92d
--- /dev/null
+++ b/annotations/Android.mk
@@ -0,0 +1,26 @@
+#
+# Copyright (C) 2008 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.
+#
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+LOCAL_JAVA_RESOURCE_DIRS := src
+
+LOCAL_MODULE := annotations
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_HOST_JAVA_LIBRARY)
+
diff --git a/annotations/src/android/annotations/tools/SuppressLint.java b/annotations/src/android/annotations/tools/SuppressLint.java
new file mode 100644
index 0000000..7b5fcfe
--- /dev/null
+++ b/annotations/src/android/annotations/tools/SuppressLint.java
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Eclipse Public License, Version 1.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.eclipse.org/org/documents/epl-v10.php
+ *
+ * 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 android.annotations.tools;
+
+import static java.lang.annotation.ElementType.CONSTRUCTOR;
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.LOCAL_VARIABLE;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.PARAMETER;
+import static java.lang.annotation.ElementType.TYPE;
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/** Indicates that Lint should ignore the specified warnings for the annotated element. */
+@Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE})
+@Retention(RetentionPolicy.CLASS)
+public @interface SuppressLint {
+ /**
+ * The set of warnings (identified by the lint issue id) that should be
+ * ignored by lint. It is not an error to specify an unrecognized name.
+ */
+ String[] value();
+}