summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/NeededForReflection.java
diff options
context:
space:
mode:
authorBill Yi <byi@google.com>2014-04-29 15:30:09 -0700
committerBill Yi <byi@google.com>2014-04-29 15:30:09 -0700
commitf4748e79ccdc8c6f10a5903791cd253bc084a6ef (patch)
tree2dbb05e45f4a5eea661a6eeacb03f28c85efb5db /InCallUI/src/com/android/incallui/NeededForReflection.java
parenta3170fa2e80cd35d1677930d667d518d5d258c7a (diff)
parent7d4e2d70d7d9f2c53d61fb334079261c73133e01 (diff)
Merge klp-dev-plus-aosp into stage-aosp-master
Change-Id: I9f294587991055d15c369b3c1c4e23663ce35b9a
Diffstat (limited to 'InCallUI/src/com/android/incallui/NeededForReflection.java')
-rw-r--r--InCallUI/src/com/android/incallui/NeededForReflection.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/InCallUI/src/com/android/incallui/NeededForReflection.java b/InCallUI/src/com/android/incallui/NeededForReflection.java
new file mode 100644
index 000000000..363a0a548
--- /dev/null
+++ b/InCallUI/src/com/android/incallui/NeededForReflection.java
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2014 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 com.android.incallui;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * Denotes that the class, constructor, method or field is used for reflection and therefore cannot
+ * be removed by tools like ProGuard.
+ */
+@Retention(RetentionPolicy.CLASS)
+@Target({ElementType.TYPE, ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.FIELD})
+public @interface NeededForReflection {}