summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/inject/RootComponentGeneratorMetadata.java
diff options
context:
space:
mode:
authorZachary Heidepriem <zachh@google.com>2018-04-06 17:02:18 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-04-06 17:02:18 -0700
commit295e807a0610a5497ecef1acc669a6f5ff37e08b (patch)
tree77b3b90730c9e49bafefc3df232c2651241a892d /java/com/android/dialer/inject/RootComponentGeneratorMetadata.java
parent2dee3ea1461d501c8adcec20344e2992fea08836 (diff)
parent1ab138ae73314be6a54ee8d3aed18548f80be05e (diff)
Merge "Reorganized rootcomponentgenerator package and added demo."
am: 1ab138ae73 Change-Id: I917e5c5258ffe075b616c94eecf5c5df4dbc7f0b
Diffstat (limited to 'java/com/android/dialer/inject/RootComponentGeneratorMetadata.java')
-rw-r--r--java/com/android/dialer/inject/RootComponentGeneratorMetadata.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/java/com/android/dialer/inject/RootComponentGeneratorMetadata.java b/java/com/android/dialer/inject/RootComponentGeneratorMetadata.java
new file mode 100644
index 000000000..51d134a95
--- /dev/null
+++ b/java/com/android/dialer/inject/RootComponentGeneratorMetadata.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2018 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.dialer.inject;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Target;
+
+/**
+ * Only used by rootcomponent generator to store metadata for locating annotated
+ * (@DialerComponent, @InstallIn) class.
+ */
+@Target(ElementType.TYPE)
+public @interface RootComponentGeneratorMetadata {
+ String tag();
+
+ Class<?> annotatedClass();
+}