diff options
-rw-r--r-- | annotations/Android.mk | 26 | ||||
-rw-r--r-- | annotations/src/android/annotations/tools/SuppressLint.java | 38 | ||||
-rw-r--r-- | build/sdk_only_whitelist.mk | 1 | ||||
-rw-r--r-- | build/tools.atree | 3 |
4 files changed, 68 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(); +} diff --git a/build/sdk_only_whitelist.mk b/build/sdk_only_whitelist.mk index 7c2a2ae..bb00a7f 100644 --- a/build/sdk_only_whitelist.mk +++ b/build/sdk_only_whitelist.mk @@ -40,6 +40,7 @@ ifneq (,$(shell which javac 2>/dev/null)) subdirs += \ sdk/archquery \ sdk/androidprefs \ + sdk/annotations \ sdk/apkbuilder \ sdk/assetstudio \ sdk/common \ diff --git a/build/tools.atree b/build/tools.atree index 92985bb..23a0d7c 100644 --- a/build/tools.atree +++ b/build/tools.atree @@ -147,6 +147,9 @@ prebuilts/tools/common/proguard/proguard4.7/src/proguard/ant/task.properties to # SDK Controller sdk/apps/SdkController tools/apps/SdkController +# tools specific support jar +framework/annotations.jar tools/support/annotations.jar + ############################################################################## # Tests Component ############################################################################## |