summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/NeededForReflection.java
diff options
context:
space:
mode:
authorIhab Awad <ihab@google.com>2014-03-03 14:12:57 -0800
committerIhab Awad <ihab@google.com>2014-03-07 15:14:41 -0800
commit5510dea8156517d56cf2104e113f9f9357d42b61 (patch)
tree4ce6a153feaa8f9c7223008aa5fc18a8c9a37b16 /InCallUI/src/com/android/incallui/NeededForReflection.java
parent78f59304027795f8fec2c90e903d77a507cbc4f7 (diff)
Update dialpad to new look and feel.
http://b/13189041 Change-Id: I26b306300e11fd6830d40b51a705c472c89925f4
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 {}