diff options
| author | Gabriel Peal <gpeal@google.com> | 2014-03-22 23:35:00 +0000 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-22 23:35:00 +0000 |
| commit | e05077d78c9abde054a754db53e71c647b9a705c (patch) | |
| tree | b8ec86abda3a577af60bdfd5c4f2e5b39abd74b3 /core/java/android | |
| parent | 529d47ace907c9d961e2c1fb2e4e68ff24833e72 (diff) | |
| parent | 83da75d938d519bbcffb9c3b52802fd2daad4aee (diff) | |
am 83da75d9: Added a private apis jar that includes explicitly supported APIs that are not useful for 3rd party developers.
* commit '83da75d938d519bbcffb9c3b52802fd2daad4aee':
Added a private apis jar that includes explicitly supported APIs that are not useful for 3rd party developers.
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/annotation/PrivateApi.java | 31 |
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 000000000000..985eafec5d33 --- /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 { +} |
