diff options
author | 2014-10-23 07:54:37 +0000 | |
---|---|---|
committer | 2014-10-23 07:54:37 +0000 | |
commit | 2fbb11ee1b57c8ac90feafc0ed4ae158f4bf35f3 (patch) | |
tree | cf7eb6d946c660885f5904a792d0d58f45eea809 /common/src/com/android/inputmethod/annotations/ExternallyReferenced.java | |
parent | 77e6afd1f243eb05936a00f54f6839ecacddd35c (diff) | |
parent | b11fc7d423667f1cd949b50ddea3761e72d16a2c (diff) | |
download | latinime-2fbb11ee1b57c8ac90feafc0ed4ae158f4bf35f3.tar.gz latinime-2fbb11ee1b57c8ac90feafc0ed4ae158f4bf35f3.tar.xz latinime-2fbb11ee1b57c8ac90feafc0ed4ae158f4bf35f3.zip |
am b11fc7d4: Move annotations classes to latiime-common
* commit 'b11fc7d423667f1cd949b50ddea3761e72d16a2c':
Move annotations classes to latiime-common
Diffstat (limited to 'common/src/com/android/inputmethod/annotations/ExternallyReferenced.java')
-rw-r--r-- | common/src/com/android/inputmethod/annotations/ExternallyReferenced.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/common/src/com/android/inputmethod/annotations/ExternallyReferenced.java b/common/src/com/android/inputmethod/annotations/ExternallyReferenced.java new file mode 100644 index 000000000..ea5f12ce2 --- /dev/null +++ b/common/src/com/android/inputmethod/annotations/ExternallyReferenced.java @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2012 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.inputmethod.annotations; + +/** + * Denotes that the class, method or field should not be eliminated by ProGuard, + * because it is externally referenced. (See proguard.flags) + */ +public @interface ExternallyReferenced { +} |