diff options
author | Xavier Ducrohet <xav@android.com> | 2012-01-27 16:06:40 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-01-27 16:06:40 -0800 |
commit | d3ddd843a71f966ed256ea4c21f4b50c6fd735d2 (patch) | |
tree | 1d27b500f8327130f528bcbd050b4fb40300e519 /annotations | |
parent | 7abf0861af9f6afe854bafa6d43d9d1feba8b552 (diff) | |
parent | 16234ae8bff35630ea6f19f5ffde5df1f8bff669 (diff) | |
download | sdk-d3ddd843a71f966ed256ea4c21f4b50c6fd735d2.zip sdk-d3ddd843a71f966ed256ea4c21f4b50c6fd735d2.tar.gz sdk-d3ddd843a71f966ed256ea4c21f4b50c6fd735d2.tar.bz2 |
Merge "Support annotations for backward compatibility."
Diffstat (limited to 'annotations')
-rw-r--r-- | annotations/Android.mk | 26 | ||||
-rw-r--r-- | annotations/src/android/annotations/tools/SuppressLint.java | 38 |
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(); +} |