summaryrefslogtreecommitdiffstats
path: root/core/java/android/annotation
diff options
context:
space:
mode:
authorGabriel Peal <gpeal@google.com>2014-03-21 11:31:32 -0700
committerGabriel Peal <gpeal@google.com>2014-03-25 11:08:19 -0700
commitf1e1e7714375b3b83f2cc3956b112293face56a1 (patch)
treef78b133e81542b0f3c551d754ab3c02c6d1d6425 /core/java/android/annotation
parent0a8596dc0c497404a332ae990b2bd77553cde870 (diff)
downloadframeworks_base-f1e1e7714375b3b83f2cc3956b112293face56a1.zip
frameworks_base-f1e1e7714375b3b83f2cc3956b112293face56a1.tar.gz
frameworks_base-f1e1e7714375b3b83f2cc3956b112293face56a1.tar.bz2
resolved conflicts for merge of 74fb97de to master
Change-Id: If28dc21a2ea7e634da130f3c59c17cd63dd5336a
Diffstat (limited to 'core/java/android/annotation')
-rw-r--r--core/java/android/annotation/PrivateApi.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/core/java/android/annotation/PrivateApi.java b/core/java/android/annotation/PrivateApi.java
new file mode 100644
index 0000000..985eafe
--- /dev/null
+++ b/core/java/android/annotation/PrivateApi.java
@@ -0,0 +1,31 @@
+/*
+ * 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.
+ */
+
+package android.annotation;
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+/**
+ * Indicates an API is exposed for use by bundled applications.
+ * <p>
+ * These APIs are not guaranteed to remain consistent release-to-release,
+ * and are not for use by apps linking against the SDK.
+ * @hide
+ */
+@Retention(RetentionPolicy.SOURCE)
+public @interface PrivateApi {
+}